aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-12-28 14:21:42 +0100
committerChristian Clason <c.clason@uni-graz.at>2023-01-01 15:05:21 +0100
commitad184b213d6087ac90b4ebd75749a5337a3423c6 (patch)
tree51dce529ae743792da316a0d0cf2e6d7af017be1
parentdfb840970c36056584e9a55d77a2030b4e403e9d (diff)
downloadrneovim-ad184b213d6087ac90b4ebd75749a5337a3423c6.tar.gz
rneovim-ad184b213d6087ac90b4ebd75749a5337a3423c6.tar.bz2
rneovim-ad184b213d6087ac90b4ebd75749a5337a3423c6.zip
docs(luvref): fix treesitter parsing errors
-rw-r--r--runtime/doc/luvref.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/luvref.txt b/runtime/doc/luvref.txt
index b0d1b6764a..859e75e4af 100644
--- a/runtime/doc/luvref.txt
+++ b/runtime/doc/luvref.txt
@@ -2626,7 +2626,7 @@ uv.fs_read({fd}, {size} [, {offset} [, {callback}]]) *uv.fs_read()*
indicates EOF.
If `offset` is nil or omitted, it will default to `-1`, which
- indicates 'use and update the current file offset.'
+ indicates "use and update the current file offset."
Note: When `offset` is >= 0, the current file offset will not
be updated by the read.
@@ -2665,7 +2665,7 @@ uv.fs_write({fd}, {data} [, {offset} [, {callback}]]) *uv.fs_write()*
written.
If `offset` is nil or omitted, it will default to `-1`, which
- indicates 'use and update the current file offset.'
+ indicates "use and update the current file offset."
Note: When `offset` is >= 0, the current file offset will not
be updated by the write.