From 01b9d7865f339837f0907c0bf0943424fc261acb Mon Sep 17 00:00:00 2001 From: Swastika Gupta <64654203+Swastyy@users.noreply.github.com> Date: Sun, 1 Aug 2021 19:44:47 +0530 Subject: [PATCH] Update backtracking/wildcard_matching.cpp Co-authored-by: David Leal --- backtracking/wildcard_matching.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backtracking/wildcard_matching.cpp b/backtracking/wildcard_matching.cpp index 12e6a3ca3..562d05099 100644 --- a/backtracking/wildcard_matching.cpp +++ b/backtracking/wildcard_matching.cpp @@ -95,7 +95,7 @@ int32_t wildcard_matching(std::string s, std::string p, int pos1, int pos2) } // namespace backtracking /** - * @brief Test implementations + * @brief Self-test implementations * @returns void */ static void test() {