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
diff options
context:
space:
mode:
authorBenjamin Fleischer <github@benjaminfleischer.com>2017-02-06 04:18:46 +0300
committerBrian White <mscdex@mscdex.net>2017-03-04 00:29:19 +0300
commit4897ae211423a6282cd7a258ede9358743784e6f (patch)
tree58c67cef3338364c81287f8f7c7ad775db72ce6a /doc/api_assets
parentf01fd2ae7048e6cc3cc7c56c8ff9b7591a319cb3 (diff)
benchmark,build,doc,lib,src,test: correct typos
PR-URL: https://github.com/nodejs/node/pull/11189 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Diffstat (limited to 'doc/api_assets')
-rw-r--r--doc/api_assets/dnt_helper.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api_assets/dnt_helper.js b/doc/api_assets/dnt_helper.js
index f255d916c2d..9906db4f276 100644
--- a/doc/api_assets/dnt_helper.js
+++ b/doc/api_assets/dnt_helper.js
@@ -26,7 +26,7 @@ function _dntEnabled(dnt, userAgent) {
var fxMatch = ua.match(/Firefox\/(\d+)/);
var ieRegEx = /MSIE|Trident/i;
var isIE = ieRegEx.test(ua);
- // Matches from Windows up to the first occurance of ; un-greedily
+ // Matches from Windows up to the first occurrence of ; un-greedily
// http://www.regexr.com/3c2el
var platform = ua.match(/Windows.+?(?=;)/g);