Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 99a154d

Browse files
committed
Fix few typos in various places.
1 parent e4e5677 commit 99a154d

File tree

7 files changed

+62
-62
lines changed

7 files changed

+62
-62
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ install:
4747
# Log HTTP requests
4848
- npm config set loglevel http
4949
- npm install -g npm@2.5
50-
# Instal npm dependecies and ensure that npm cache is not stale
50+
# Install npm dependencies and ensure that npm cache is not stale
5151
- npm install
5252

5353
before_script:

CHANGELOG.md

Lines changed: 56 additions & 56 deletions
Large diffs are not rendered by default.

i18n/closure/numberSymbolsExt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* using the --for_closure flag.
2121
* File generated from CLDR ver. 27.0.1
2222
*
23-
* This file coveres those locales that are not covered in
23+
* This file covers those locales that are not covered in
2424
* "numberformatsymbols.js".
2525
*
2626
* Before checkin, this file could have been manually edited. This is

i18n/src/parser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var PATTERN_SEP = ';',
1111
DIGIT = '#';
1212

1313
/**
14-
* main funciton for parser
14+
* main function for parser
1515
* @param str {string} pattern to be parsed (e.g. #,##0.###).
1616
*/
1717
function parsePattern(pattern) {

lib/versions/version-info.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ var getSnapshotVersion = function() {
178178
// last release was a non beta release. Increment the patch level to
179179
// indicate the next release that we will be doing.
180180
// E.g. last release was 1.3.0, then the snapshot will be
181-
// 1.3.1-build.1, which is lesser than 1.3.1 accorind the semver!
181+
// 1.3.1-build.1, which is lesser than 1.3.1 according to the semver!
182182

183183
// If the last release was a beta release we don't update the
184184
// beta number by purpose, as otherwise the semver comparison

src/Angular.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ function isArrayLike(obj) {
204204

205205
// arrays, strings and jQuery/jqLite objects are array like
206206
// * jqLite is either the jQuery or jqLite constructor function
207-
// * we have to check the existance of jqLite first as this method is called
207+
// * we have to check the existence of jqLite first as this method is called
208208
// via the forEach method when constructing the jqLite object in the first place
209209
if (isArray(obj) || isString(obj) || (jqLite && obj instanceof jqLite)) return true;
210210

src/jqLite.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ function jqLiteRemove(element, keepData) {
504504
function jqLiteDocumentLoaded(action, win) {
505505
win = win || window;
506506
if (win.document.readyState === 'complete') {
507-
// Force the action to be run async for consistent behaviour
507+
// Force the action to be run async for consistent behavior
508508
// from the action's point of view
509509
// i.e. it will definitely not be in a $apply
510510
win.setTimeout(action);

0 commit comments

Comments
 (0)