diff options
author | pdw <algorithicimperative@gmail.com> | 2015-05-15 20:15:12 -0500 |
---|---|---|
committer | pdw <algorithicimperative@gmail.com> | 2015-05-15 20:15:12 -0500 |
commit | cb6f867495ae23779cc7846eb2817b3bb532dbd1 (patch) | |
tree | 6940baa434586e326cf230232c7f931e677eee65 /lib/pure/asyncdispatch.nim | |
parent | 1c0bbcff5a3d5176409245fdd685587d14ce64e3 (diff) | |
download | Nim-cb6f867495ae23779cc7846eb2817b3bb532dbd1.tar.gz |
Fixed 'milliseconds' spelling in code and docs
Diffstat (limited to 'lib/pure/asyncdispatch.nim')
-rw-r--r-- | lib/pure/asyncdispatch.nim | 2 |
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)) |