Skip to content

Commit bcf78eb

Browse files
Alexandr Gureevgkalpak
Alexandr Gureev
authored andcommitted
docs(ngAnimate): fix typos in examples
Closes angular#12995
1 parent 3050dd1 commit bcf78eb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ngAnimate/module.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@
290290
* jQuery(element).fadeOut(1000, doneFn);
291291
* }
292292
* }
293-
* }]
293+
* }]);
294294
* ```
295295
*
296296
* The nice thing about JS-based animations is that we can inject other services and make use of advanced animation libraries such as
@@ -321,7 +321,7 @@
321321
* // do some cool animation and call the doneFn
322322
* }
323323
* }
324-
* }]
324+
* }]);
325325
* ```
326326
*
327327
* ## CSS + JS Animations Together
@@ -343,7 +343,7 @@
343343
* jQuery(element).slideIn(1000, doneFn);
344344
* }
345345
* }
346-
* }]
346+
* }]);
347347
* ```
348348
*
349349
* ```css
@@ -372,7 +372,7 @@
372372
* runner.done(doneFn);
373373
* }
374374
* }
375-
* }]
375+
* }]);
376376
* ```
377377
*
378378
* The nice thing here is that we can save bandwidth by sticking to our CSS-based animation code and we don't need to rely on a 3rd-party animation framework.
@@ -396,7 +396,7 @@
396396
* runner.done(doneFn);
397397
* }
398398
* }
399-
* }]
399+
* }]);
400400
* ```
401401
*
402402
* Now we can fill in the rest via our transition CSS code:

0 commit comments

Comments
 (0)