Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorjigsaw <jigsaw@live.jp>2015-02-17 18:10:17 +0300
committercjihrig <cjihrig@gmail.com>2015-02-17 18:55:13 +0300
commit0555b3c785c637683e7e8a2fdd0e440cb234758e (patch)
tree165088fcc48de6f2401f70eeb7e469270174ab01 /doc
parentc6fd2c5e95350c4aece2300f77b3942d8fd55daa (diff)
doc: fix typo miliseconds -> milliseconds
PR-URL: https://github.com/iojs/io.js/pull/865 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/console.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/console.markdown b/doc/api/console.markdown
index a42a391d009..6cd24883701 100644
--- a/doc/api/console.markdown
+++ b/doc/api/console.markdown
@@ -66,7 +66,7 @@ Defaults to `false`. Colors are customizable, see below.
Used to calculate the duration of a specific operation. To start a timer, call
the `console.time()` method, giving it a name as only parameter. To stop the
-timer, and to get the elapsed time in miliseconds, just call the
+timer, and to get the elapsed time in milliseconds, just call the
[`console.timeEnd()`](#console_console_timeend_label) method, again passing the
timer's name as the parameter.