docs(luvref): fix treesitter parsing errors

This commit is contained in:
Christian Clason
2022-12-28 14:21:42 +01:00
parent dfb840970c
commit ad184b213d

View File

@@ -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.