From 5f19d8d368581a0c629d02d19b02fea44c674102 Mon Sep 17 00:00:00 2001 From: Panquesito7 Date: Wed, 8 Jul 2020 11:31:43 -0500 Subject: [PATCH] docs: fix Wikipedia link in minimax.cpp --- backtracking/minimax.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/backtracking/minimax.cpp b/backtracking/minimax.cpp index 5de9838d3..ca327dc8f 100644 --- a/backtracking/minimax.cpp +++ b/backtracking/minimax.cpp @@ -1,8 +1,7 @@ /** * @file - * @brief returns which is the longest/shortest number, using minimax algorithm - * - * Wikipedia: https://en.wikipedia.org/wiki/Minimax + * @brief returns which is the longest/shortest number + * using [minimax](https://en.wikipedia.org/wiki/Minimax) algorithm */ #include #include