summary refs log tree commit diff stats
path: root/lib/system.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/system.nim')
-rw-r--r--lib/system.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim
index ee94f85d2..80aedaa8c 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -2594,10 +2594,10 @@ when not defined(JS): #and not defined(nimscript):
       ## Closes the file.
 
     proc endOfFile*(f: File): bool {.tags: [], benign.}
-      ## Returns true if `f` is at the end.
+      ## Returns true iff `f` is at the end.
 
     proc fileError*(f: File): bool {.tags: [], benign.}
-      ## Returns true if the error indicator of `f` is set.
+      ## Returns true iff the error indicator of `f` is set.
 
     proc readChar*(f: File): char {.
       importc: "fgetc", header: "<stdio.h>", tags: [ReadIOEffect].}