File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ function annotate(fn) {
62
62
}
63
63
} else if ( isArray ( fn ) ) {
64
64
last = fn . length - 1 ;
65
- assertArgFn ( fn [ last ] , 'fn' )
65
+ assertArgFn ( fn [ last ] , 'fn' ) ;
66
66
$inject = fn . slice ( 0 , last ) ;
67
67
} else {
68
68
assertArgFn ( fn , 'fn' , true ) ;
@@ -278,7 +278,7 @@ function annotate(fn) {
278
278
*
279
279
* beforeEach(module(function($provide) {
280
280
* $provide.provider('greet', GreetProvider);
281
- * });
281
+ * })) ;
282
282
*
283
283
* it('should greet', inject(function(greet) {
284
284
* expect(greet('angular')).toEqual('Hello angular!');
@@ -291,9 +291,7 @@ function annotate(fn) {
291
291
* inject(function(greet) {
292
292
* expect(greet('angular')).toEqual('Ahoj angular!');
293
293
* });
294
- * )};
295
- *
296
- * });
294
+ * });
297
295
* </pre>
298
296
*/
299
297
You can’t perform that action at this time.
0 commit comments