-
Notifications
You must be signed in to change notification settings - Fork 27.4k
style: Spelling fixes #15323
style: Spelling fixes #15323
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ if (flag === '--login') { | |
} | ||
|
||
function help() { | ||
console.log('Synopsys'); | ||
console.log('Synopsis'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a functional change to the documentation system. If you need such changes split out, I can, but ... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Interesting. I don't think this file is used anymore. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For my reference, this led to #15325 |
||
console.log('gdocs.js --login <username>'); | ||
console.log('gdocs.js --fetch [<docs collection>]'); | ||
process.exit(-1); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -357,7 +357,7 @@ describe('Binder', function() { | |
}); | ||
}); | ||
|
||
it('ShoulIgnoreVbNonBindable', inject(function($rootScope, $compile) { | ||
it('ShouldIgnoreVbNonBindable', inject(function($rootScope, $compile) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a minor change to the testsuite's categorization system. It's unlikely that it would break anything, although historical data about failures would be disconnected. |
||
element = $compile( | ||
'<div>{{a}}' + | ||
'<div ng-non-bindable>{{a}}</div>' + | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,7 +124,7 @@ describe('injector', function() { | |
expect($injector).not.toBe(providerInjector); | ||
})); | ||
|
||
it('should have an false strictDi property', inject(function($injector) { | ||
it('should have a false strictDi property', inject(function($injector) { | ||
expect($injector.strictDi).toBe(false); | ||
})); | ||
|
||
|
@@ -192,7 +192,7 @@ describe('injector', function() { | |
|
||
|
||
it('should create $inject', function() { | ||
var extraParans = angular.noop; | ||
var extraParams = angular.noop; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It took me a long time to try to decide if this should be |
||
/* eslint-disable space-before-function-paren */ | ||
// keep the multi-line to make sure we can handle it | ||
function $f_n0 /* | ||
|
@@ -203,7 +203,7 @@ describe('injector', function() { | |
function(a, b) {} | ||
*/ | ||
_c, | ||
/* {some type} */ d) { extraParans(); } | ||
/* {some type} */ d) { extraParams(); } | ||
/* eslint-enable */ | ||
expect(annotate($f_n0)).toEqual(['$a', 'b_', '_c', 'd']); | ||
expect($f_n0.$inject).toEqual(['$a', 'b_', '_c', 'd']); | ||
|
@@ -944,7 +944,7 @@ describe('injector', function() { | |
}); | ||
|
||
|
||
it('should throw usefull error on wrong argument type]', function() { | ||
it('should throw useful error on wrong argument type]', function() { | ||
expect(function() { | ||
$injector.invoke({}); | ||
}).toThrowMinErr('ng', 'areq', 'Argument \'fn\' is not a function, got Object'); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't imagine someone with a domain of FooX calling themselves FooY...