From c66a23f50ab1cefbd8cfeca98adadc8b8c3ecdbd Mon Sep 17 00:00:00 2001 From: jigsaw Date: Wed, 18 Feb 2015 00:10:17 +0900 Subject: [PATCH] doc: Fix typo miliseconds -> milliseconds --- doc/api/console.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/console.markdown b/doc/api/console.markdown index a42a391d00975e..6cd24883701871 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.