From 0958e69dd33540c84c58a7ae273715266b555a94 Mon Sep 17 00:00:00 2001 From: Akshay Anand Date: Fri, 16 Oct 2020 00:59:50 +0530 Subject: [PATCH] Update dynamic_programming/word_break.cpp Co-authored-by: David Leal --- dynamic_programming/word_break.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamic_programming/word_break.cpp b/dynamic_programming/word_break.cpp index f3deb30e4..731d6417b 100644 --- a/dynamic_programming/word_break.cpp +++ b/dynamic_programming/word_break.cpp @@ -42,7 +42,7 @@ namespace dynamic_programming { /** * @namespace word_break - * @brief Functions for Word Break algorithm + * @brief Functions for [Word Break](https://leetcode.com/problems/word-break/) problem */ namespace word_break {