]> Kevux Git Server - fll/commitdiff
Cleanup: Fix documentation comments.
authorKevin Day <thekevinday@gmail.com>
Sun, 10 Jul 2022 22:04:57 +0000 (17:04 -0500)
committerKevin Day <thekevinday@gmail.com>
Sun, 10 Jul 2022 22:04:57 +0000 (17:04 -0500)
level_0/f_file/c/file.h
level_0/f_utf/c/utf/convert.h

index 5c367a8766340da1bd411219431d02e6ab1ee79d..0ae9c1f571e6a82df273cf6fea12e6f38c1ff09f 100644 (file)
@@ -2098,7 +2098,7 @@ extern "C" {
  * @param mode
  *   The file modes do use when opening, as an fopen() file mode string.
  *   Set mode.used to 0 to determine mode from file.flags (falling back to read only as a failsafe).
- *   If neither truncate nor append are not specified in write only mode, then the failsafe is to append.
+ *   If neither truncate nor append are specified in write only mode, then the failsafe is to append.
  *
  *   File Modes (fopen() file modes vs open file modes):
  *     - "r":  O_RDONLY.
index 4e2b7c3115e69a1822ca75ff0e094d1d8a06d26e..db9206249d4f609168991164528576076f5d61e3 100644 (file)
@@ -154,8 +154,9 @@ extern "C" {
  *   There must be enough space in the character buffer to handle the Unicode width.
  *   It is recommended to always have 4 characters (4 uint8_t) of space available in character.
  * @param character
- *   The (UTF-8) character.
- *   The f_utf_char_t is a 32-bit integer containing UTF-8 sequences.
+ *   The (UTF-8) character as a sequence of bytes.
+ *   This must have a length equal to the width (up to 4 characters) to be safely used.
+ *   The caller is expected to ensure this.
  *
  * @return
  *   F_none on success.