diff options
author | Lewis Russell <lewis6991@gmail.com> | 2022-08-26 11:11:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-26 11:11:14 +0100 |
commit | 06d5c6332deeb52ccd78d632d1fb28df91faf7dc (patch) | |
tree | eec06181d28ca9ee9d0e8aa6042a84726d9be6f3 /src/nvim/eval/funcs.c | |
parent | 946c0aa66f7b52c406b2654b9869edcb79db5ada (diff) | |
parent | 2498e9feb025361576603a0101c86393d211e31e (diff) | |
download | rneovim-06d5c6332deeb52ccd78d632d1fb28df91faf7dc.tar.gz rneovim-06d5c6332deeb52ccd78d632d1fb28df91faf7dc.tar.bz2 rneovim-06d5c6332deeb52ccd78d632d1fb28df91faf7dc.zip |
Merge pull request #19947 from lewis6991/truefalse
Diffstat (limited to 'src/nvim/eval/funcs.c')
-rw-r--r-- | src/nvim/eval/funcs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/eval/funcs.c b/src/nvim/eval/funcs.c index ff5d8a0a8f..78298765a0 100644 --- a/src/nvim/eval/funcs.c +++ b/src/nvim/eval/funcs.c @@ -234,7 +234,7 @@ int call_internal_method(const char_u *const fname, const int argcount, typval_T return ERROR_NONE; } -/// @return TRUE for a non-zero Number and a non-empty String. +/// @return true for a non-zero Number and a non-empty String. static int non_zero_arg(typval_T *argvars) { return ((argvars[0].v_type == VAR_NUMBER @@ -2548,7 +2548,7 @@ static void f_getbufinfo(typval_T *argvars, typval_T *rettv, EvalFuncData fptr) /// Get line or list of lines from buffer "buf" into "rettv". /// -/// @param retlist if TRUE, then the lines are returned as a Vim List. +/// @param retlist if true, then the lines are returned as a Vim List. /// /// @return range (from start to end) of lines in rettv from the specified /// buffer. @@ -7549,7 +7549,7 @@ static void f_setbufline(typval_T *argvars, typval_T *rettv, EvalFuncData fptr) } /// Set the cursor or mark position. -/// If 'charpos' is TRUE, then use the column number as a character offset. +/// If 'charpos' is true, then use the column number as a character offset. /// Otherwise use the column number as a byte offset. static void set_position(typval_T *argvars, typval_T *rettv, bool charpos) { |