From 393dcd6dd0bf3849365fa7568936520f45e062c8 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 17 Nov 2019 19:27:39 -0600 Subject: [PATCH] Cleanup: comments in f_utf --- level_0/f_utf/c/utf.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/level_0/f_utf/c/utf.h b/level_0/f_utf/c/utf.h index 8e9b372..5eb77d1 100644 --- a/level_0/f_utf/c/utf.h +++ b/level_0/f_utf/c/utf.h @@ -207,7 +207,7 @@ extern "C" { #endif // _di_f_utf_string_lengths_ /** - * designates a start and stop position that represents a sub-string inside of some parent string. + * Designates a start and stop position that represents a sub-string inside of some parent string. * use this to avoid resizing, restructuring, and reallocating the parent string to separate the sub-string. */ #ifndef _di_f_utf_string_location_ @@ -230,7 +230,7 @@ extern "C" { #endif // _di_f_utf_string_location_ /** - * an array of string locations. + * An array of string locations. * * size: total amount of allocated space. * used: total number of allocated spaces used. @@ -257,7 +257,7 @@ extern "C" { #endif // _di_f_utf_string_locations_ /** - * a string that supports contains a size attribute to handle dynamic allocations and deallocations. + * A string that supports contains a size attribute to handle dynamic allocations and deallocations. * save the string size along with the string, so that strlen(..) commands can be avoided as much as possible. * * size: total amount of allocated space. @@ -316,7 +316,7 @@ extern "C" { #endif // _di_f_utf_string_dynamic_ /** - * an array of dynamic utf_strings. + * An array of dynamic utf_strings. * * size: total amount of allocated space. * used: total number of allocated spaces used. -- 1.8.3.1