From 4390bb45701c4e35091d5f8230eaa6e28254a56d Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 31 May 2021 17:42:37 -0500 Subject: [PATCH] Cleanup: Remove stale comment and fix typo. --- level_0/f_utf/c/utf.h | 8 -------- level_3/fss_basic_list_read/c/private-common.h | 2 +- level_3/fss_basic_read/c/private-common.h | 2 +- level_3/fss_extended_list_read/c/private-common.h | 2 +- level_3/fss_extended_read/c/private-common.h | 2 +- 5 files changed, 4 insertions(+), 12 deletions(-) diff --git a/level_0/f_utf/c/utf.h b/level_0/f_utf/c/utf.h index f5f35f0..1c4df3f 100644 --- a/level_0/f_utf/c/utf.h +++ b/level_0/f_utf/c/utf.h @@ -570,8 +570,6 @@ extern "C" { * * A word character is alpha-numeric or an underscore '_'. * - * This does not include zero-width punctuation. - * * @param character * The character to validate. * @param strict @@ -601,8 +599,6 @@ extern "C" { * All other dash-like Unicode characters are not considered a dash here. * The dash here is intended for combining words, which matches the context of the Unicode "hyphen". * - * This does not include zero-width punctuation. - * * @param character * The character to validate. * @param strict @@ -1284,8 +1280,6 @@ extern "C" { * * A word character is alpha-digit or an underscore '_'. * - * This does not include zero-width punctuation. - * * @param character * The character to validate. * There must be enough space allocated to compare against, as limited by width_max. @@ -1319,8 +1313,6 @@ extern "C" { * All other dash-like Unicode characters are not considered a dash here. * The dash here is intended for combining words, which matches the context of the Unicode "hyphen". * - * This does not include zero-width punctuation. - * * @param character * The character to validate. * There must be enough space allocated to compare against, as limited by width_max. diff --git a/level_3/fss_basic_list_read/c/private-common.h b/level_3/fss_basic_list_read/c/private-common.h index b54f1ad..e7cc67d 100644 --- a/level_3/fss_basic_list_read/c/private-common.h +++ b/level_3/fss_basic_list_read/c/private-common.h @@ -207,7 +207,7 @@ extern "C" { * The data to deallocate. */ #ifndef _di_fss_basic_list_read_data_delete_simple_ - extern void fss_basic_list_read_data_delete_simple(fss_basic_list_read_data_t *daa) f_attribute_visibility_internal; + extern void fss_basic_list_read_data_delete_simple(fss_basic_list_read_data_t *data) f_attribute_visibility_internal; #endif // _di_fss_basic_list_read_data_delete_simple_ /** diff --git a/level_3/fss_basic_read/c/private-common.h b/level_3/fss_basic_read/c/private-common.h index 4b403c2..b0b9ca9 100644 --- a/level_3/fss_basic_read/c/private-common.h +++ b/level_3/fss_basic_read/c/private-common.h @@ -202,7 +202,7 @@ extern "C" { * The data to deallocate. */ #ifndef _di_fss_basic_read_data_delete_simple_ - extern void fss_basic_read_data_delete_simple(fss_basic_read_data_t *daa) f_attribute_visibility_internal; + extern void fss_basic_read_data_delete_simple(fss_basic_read_data_t *data) f_attribute_visibility_internal; #endif // _di_fss_basic_read_data_delete_simple_ /** diff --git a/level_3/fss_extended_list_read/c/private-common.h b/level_3/fss_extended_list_read/c/private-common.h index 4c4946a..3f09a28 100644 --- a/level_3/fss_extended_list_read/c/private-common.h +++ b/level_3/fss_extended_list_read/c/private-common.h @@ -208,7 +208,7 @@ extern "C" { * The data to deallocate. */ #ifndef _di_fss_extended_list_read_data_delete_simple_ - extern void fss_extended_list_read_data_delete_simple(fss_extended_list_read_data_t *daa) f_attribute_visibility_internal; + extern void fss_extended_list_read_data_delete_simple(fss_extended_list_read_data_t *data) f_attribute_visibility_internal; #endif // _di_fss_extended_list_read_data_delete_simple_ /** diff --git a/level_3/fss_extended_read/c/private-common.h b/level_3/fss_extended_read/c/private-common.h index ffb165d..93c08bd 100644 --- a/level_3/fss_extended_read/c/private-common.h +++ b/level_3/fss_extended_read/c/private-common.h @@ -205,7 +205,7 @@ extern "C" { * The data to deallocate. */ #ifndef _di_fss_extended_read_data_delete_simple_ - extern void fss_extended_read_data_delete_simple(fss_extended_read_data_t *daa) f_attribute_visibility_internal; + extern void fss_extended_read_data_delete_simple(fss_extended_read_data_t *data) f_attribute_visibility_internal; #endif // _di_fss_extended_read_data_delete_simple_ /** -- 1.8.3.1