diff options
author | Nan Xiao <nan@chinadtrace.org> | 2023-08-14 08:44:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-14 08:44:50 +0800 |
commit | 9bf605cf9801673eca96057935306ddd7fafbfe9 (patch) | |
tree | a536237cbb2d1cf441345b113ea250e11500cd6d /lib/std/syncio.nim | |
parent | 9207d77848d6f5db3635ae64f3cd4972cdbe3296 (diff) | |
download | Nim-9bf605cf9801673eca96057935306ddd7fafbfe9.tar.gz |
fixes syncio document (#22467)
Diffstat (limited to 'lib/std/syncio.nim')
-rw-r--r-- | lib/std/syncio.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/syncio.nim b/lib/std/syncio.nim index 77d4fa04c..a2a5c305b 100644 --- a/lib/std/syncio.nim +++ b/lib/std/syncio.nim @@ -38,8 +38,8 @@ type ## at the end. If the file does not exist, it ## will be created. - FileHandle* = cint ## type that represents an OS file handle; this is - ## useful for low-level file access + FileHandle* = cint ## The type that represents an OS file handle; this is + ## useful for low-level file access. FileSeekPos* = enum ## Position relative to which seek should happen. # The values are ordered so that they match with stdio |