summary refs log tree commit diff stats
path: root/doc/gc.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/gc.txt')
-rw-r--r--doc/gc.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/gc.txt b/doc/gc.txt
index ac8d46cfa..f51421bcd 100644
--- a/doc/gc.txt
+++ b/doc/gc.txt
@@ -87,14 +87,14 @@ is triggered.
 Time measurement
 ----------------
 
-The GC's way of measing time uses (see ``lib/system/timers.nim`` for the 
+The GC's way of measuring time uses (see ``lib/system/timers.nim`` for the 
 implementation):
 
 1) ``QueryPerformanceCounter`` and ``QueryPerformanceFrequency`` on Windows.
 2) ``mach_absolute_time`` on Mac OS X.
 3) ``gettimeofday`` on Posix systems.
 
-As such it supports a resolution of nano seconds internally; however the API
+As such it supports a resolution of nanoseconds internally; however the API
 uses microseconds for convenience.