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

Commit 2a3b563

Browse files
committed
code(*): fix some inconsequential typos
* a * animate * inputting * linking * synopsis
1 parent 4b01319 commit 2a3b563

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

gdocs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if (flag === '--login') {
3939
}
4040

4141
function help() {
42-
console.log('Synopsys');
42+
console.log('Synopsis');
4343
console.log('gdocs.js --login <username>');
4444
console.log('gdocs.js --fetch [<docs collection>]');
4545
process.exit(-1);

src/ng/compile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@
402402
* * defines the parent to which the `cloneLinkingFn` will add the cloned elements.
403403
* * default: `$element.parent()` resp. `$element` for `transclude:'element'` resp. `transclude:true`.
404404
* * only needed for transcludes that are allowed to contain non html elements (e.g. SVG elements)
405-
* and when the `cloneLinkinFn` is passed,
405+
* and when the `cloneLinkingFn` is passed,
406406
* as those elements need to created and cloned in a special way when they are defined outside their
407407
* usual containers (e.g. like `<svg>`).
408408
* * See also the `directive.templateNamespace` property.
@@ -2222,7 +2222,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
22222222
}
22232223

22242224
/**
2225-
* Given a node with an directive-start it collects all of the siblings until it finds
2225+
* Given a node with a directive-start it collects all of the siblings until it finds
22262226
* directive-end.
22272227
* @param node
22282228
* @param attrStart

src/ng/directive/input.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,7 @@ function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {
12341234
function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
12351235
var type = lowercase(element[0].type);
12361236

1237-
// In composition mode, users are still inputing intermediate text buffer,
1237+
// In composition mode, users are still inputting intermediate text buffer,
12381238
// hold the listener until composition is done.
12391239
// More about composition events: https://developer.mozilla.org/en-US/docs/Web/API/CompositionEvent
12401240
if (!$sniffer.android) {

src/ngAnimate/animateChildrenDirective.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* of the children's parents are currently animating. By default, when an element has an active `enter`, `leave`, or `move`
1313
* (structural) animation, child elements that also have an active structural animation are not animated.
1414
*
15-
* Note that even if `ngAnimteChildren` is set, no child animations will run when the parent element is removed from the DOM (`leave` animation).
15+
* Note that even if `ngAnimateChildren` is set, no child animations will run when the parent element is removed from the DOM (`leave` animation).
1616
*
1717
*
1818
* @param {string} ngAnimateChildren If the value is empty, `true` or `on`,

0 commit comments

Comments
 (0)