diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-07-15 00:54:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-15 06:54:45 +0800 |
commit | 04c158fbec9aeeccd7bd1bb16fc8a688edadd353 (patch) | |
tree | 373aa0c994bb49fc796200aefc01eed2265f78c1 /src/nvim/eval.lua | |
parent | da9e9387934554c069c763fb432aba1b83edb999 (diff) | |
download | rneovim-04c158fbec9aeeccd7bd1bb16fc8a688edadd353.tar.gz rneovim-04c158fbec9aeeccd7bd1bb16fc8a688edadd353.tar.bz2 rneovim-04c158fbec9aeeccd7bd1bb16fc8a688edadd353.zip |
docs: misc (#29622)
Co-authored-by: Christian Clason <c.clason@uni-graz.at>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index dfb1cab542..bbc78bc68e 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -5293,7 +5293,7 @@ M.funcs = { Note that `v:_null_string`, `v:_null_list`, `v:_null_dict` and `v:_null_blob` have the same `id()` with different types because they are internally represented as NULL pointers. - `id()` returns a hexadecimal representanion of the pointers to + `id()` returns a hexadecimal representation of the pointers to the containers (i.e. like `0x994a40`), same as `printf("%p", {expr})`, but it is advised against counting on the exact format of the return value. |