From 918c5aa49e90ecf22d7f6eae3d6ef06af23ad63d Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 29 Mar 2023 23:48:52 -0500 Subject: [PATCH] Cleanup: Remove invalid documentation comments from fl_string_dynamic_compare_except_string() and fl_string_dynamic_compare_string(). These two functions, fl_string_dynamic_compare_except_string() and fl_string_dynamic_compare_string(), are not trim functions. They do not ignore leading and trailing white space. --- level_1/fl_string/c/string.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/level_1/fl_string/c/string.h b/level_1/fl_string/c/string.h index c5f28d2..f1e0f59 100644 --- a/level_1/fl_string/c/string.h +++ b/level_1/fl_string/c/string.h @@ -218,7 +218,6 @@ extern "C" { * * This does not stop on NULL. * NULL characters are ignored. - * Ignores leading and trailing whitespace. * All 1-byte characters in except1 and except2 are ignored. * * @param string1 @@ -331,7 +330,6 @@ extern "C" { * * This does not stop on NULL. * NULL characters are ignored. - * Ignores leading and trailing whitespace. * * @param string1 * String to compare. -- 1.8.3.1