diff options
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r-- | src/nvim/mbyte.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index b1f7b59b21..c0ba1d9e9b 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -534,7 +534,7 @@ int utf_ptr2cells(const char *p) /// @param[in] p String to convert. /// @param[in] len Length of the character in bytes, 0 or 1 if illegal. /// -/// @return Unicode codepoint. A negative value When the sequence is illegal. +/// @return Unicode codepoint. A negative value when the sequence is illegal. int32_t utf_ptr2CharInfo_impl(uint8_t const *p, uintptr_t const len) FUNC_ATTR_PURE FUNC_ATTR_NONNULL_ALL FUNC_ATTR_WARN_UNUSED_RESULT { |