Skip to content
This repository was archived by the owner on Sep 17, 2018. It is now read-only.

Commit 801fd31

Browse files
committed
Remove unneeded commas.
1 parent c802c2f commit 801fd31

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ module.exports = function(grunt) {
5454
files: {
5555
'tmp/custom_options.css': 'test/fixtures/example.css'
5656
}
57-
},
57+
}
5858
},
5959

6060
// Unit tests.
6161
nodeunit: {
6262
tests: ['test/*_test.js']
63-
},
63+
}
6464

6565
});
6666

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ grunt.initConfig({
3434
},
3535
your_target: {
3636
// Target-specific file lists and/or options go here.
37-
},
38-
},
37+
}
38+
}
3939
});
4040
```
4141

@@ -68,8 +68,8 @@ grunt.initConfig({
6868
files: {
6969
'flipped-one.css': 'original-one.css',
7070
'flipped-two.css': 'original-two.css'
71-
},
72-
},
71+
}
72+
}
7373
});
7474
```
7575

@@ -85,8 +85,8 @@ grunt.initConfig({
8585
files: {
8686
'flipped-one.min.css': 'original-one.css',
8787
'flipped-two.min.css': 'original-two.css'
88-
},
89-
},
88+
}
89+
}
9090
});
9191
```
9292

test/css_flip_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ exports.cssflip = {
4444
test.equal(actual, expected, 'should flip the CSS while honoring the custom indentation specified in the options.');
4545

4646
test.done();
47-
},
47+
}
4848
};

0 commit comments

Comments
 (0)