summary refs log tree commit diff stats
path: root/lib/pure/asyncdispatch.nim
diff options
context:
space:
mode:
authorpdw <algorithicimperative@gmail.com>2015-05-15 20:15:12 -0500
committerpdw <algorithicimperative@gmail.com>2015-05-15 20:15:12 -0500
commitcb6f867495ae23779cc7846eb2817b3bb532dbd1 (patch)
tree6940baa434586e326cf230232c7f931e677eee65 /lib/pure/asyncdispatch.nim
parent1c0bbcff5a3d5176409245fdd685587d14ce64e3 (diff)
downloadNim-cb6f867495ae23779cc7846eb2817b3bb532dbd1.tar.gz
Fixed 'milliseconds' spelling in code and docs
Diffstat (limited to 'lib/pure/asyncdispatch.nim')
-rw-r--r--lib/pure/asyncdispatch.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/asyncdispatch.nim b/lib/pure/asyncdispatch.nim
index a4d7a1632..8849a8be3 100644
--- a/lib/pure/asyncdispatch.nim
+++ b/lib/pure/asyncdispatch.nim
@@ -1154,7 +1154,7 @@ else:
 
 proc sleepAsync*(ms: int): Future[void] =
   ## Suspends the execution of the current async procedure for the next
-  ## ``ms`` miliseconds.
+  ## ``ms`` milliseconds.
   var retFuture = newFuture[void]("sleepAsync")
   let p = getGlobalDispatcher()
   p.timers.add((epochTime() + (ms / 1000), retFuture))