]> Kevux Git Server - fll/commitdiff
Cleanup: Fix mistakes in documentation comments.
authorKevin Day <thekevinday@gmail.com>
Mon, 22 Aug 2022 23:18:51 +0000 (18:18 -0500)
committerKevin Day <thekevinday@gmail.com>
Mon, 22 Aug 2022 23:24:53 +0000 (18:24 -0500)
The private function in fll_error should not descrribe itself as an implementation of itself.

Remove the pointer from f_string_constant_t in the comments.

Fix typo in f_console "strictly".

level_0/f_console/c/console/common.h
level_0/f_string/c/string/common.h
level_2/fll_error/c/private-error.h

index c7100d8812f08c74ff27c6c04dc1af81b9727f40..daba5bc4006bb28c80be0de1fabf1cf211ffae6c 100644 (file)
@@ -82,7 +82,7 @@ extern "C" {
  * For example, a "+D +D" means more debug output than simply "+D".
  *
  * The verbosity interpretation used as the default for many of the level 3 programs in this process, is to treat verbosity modes as a scale from quiet to debug with quiet as the least verbose and debug as the most verbose.
- * This is not stricly a requirement, but expect level 3 projects to work this way.
+ * This is not strictly a requirement, but expect level 3 projects to work this way.
  *
  * The following options are subjective in interpretation of the verbosity but are expected to be follow the general interpretation:
  *   - debug:   Enable debugging, which will likely increase output verbosity.
index 8333260a7dbf1e3f437f2c11ffc614960f3fef9c..1004c7b0c097f3ad624a8c2cc2c81c2776eda1bc 100644 (file)
@@ -78,8 +78,8 @@ extern "C" {
  * GCC errors such as: "warning: assignment discards â€˜const’ qualifier from pointer target type [-Wdiscarded-qualifiers]" can be avoided using this.
  *
  * Do not confuse this with "const f_string_static_t".
- * When "const f_string_static_t xxx" is passed to a function, then "xxx" cannot be changed.
- * When "f_string_constant_t xxx" is passed to a function, then "xxx" can be changed.
+ * When "const f_string_static_t xxx" is passed to a function, then "xxx" cannot be changed.
+ * When "f_string_constant_t xxx" is passed to a function, then "xxx" can be changed.
  */
 #ifndef _di_f_string_constant_t_
   typedef const f_char_t *f_string_constant_t;
index 05991551b06db7916a6a46bfeba12af562703a61..4d285ea93c1038a95b7ca513664f0fbf57386ed5 100644 (file)
@@ -16,7 +16,7 @@ extern "C" {
 #endif
 
 /**
- * Private implementation of private_fll_error_print().
+ * Private implementation of fll_error_print().
  *
  * Intended to be shared to each of the different implementation variations.
  *