File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,17 +21,17 @@ describe('docblock', function() {
2121 getDoclets = require ( '../docblock' ) . getDoclets ;
2222 } ) ;
2323
24- it ( 'extacts single line doclets' , function ( ) {
24+ it ( 'extracts single line doclets' , function ( ) {
2525 expect ( getDoclets ( '@foo bar\n@bar baz' ) )
2626 . toEqual ( { foo : 'bar' , bar : 'baz' } ) ;
2727 } ) ;
2828
29- it ( 'extacts multi line doclets' , function ( ) {
29+ it ( 'extracts multi line doclets' , function ( ) {
3030 expect ( getDoclets ( '@foo bar\nbaz\n@bar baz' ) )
3131 . toEqual ( { foo : 'bar\nbaz' , bar : 'baz' } ) ;
3232 } ) ;
3333
34- it ( 'extacts boolean doclets' , function ( ) {
34+ it ( 'extracts boolean doclets' , function ( ) {
3535 expect ( getDoclets ( '@foo bar\nbaz\n@abc\n@bar baz' ) )
3636 . toEqual ( { foo : 'bar\nbaz' , abc : true , bar : 'baz' } ) ;
3737 } ) ;
You can’t perform that action at this time.
0 commit comments