Skip to content

Commit 9d24237

Browse files
committed
Remove extra comma
1 parent 74e5dff commit 9d24237

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ grunt.initConfig({
3131
},
3232
your_target: {
3333
// Target-specific file lists and/or options go here.
34-
},
34+
}
3535
}
3636
});
3737
```
@@ -52,13 +52,13 @@ grunt.initConfig({
5252
foo: {
5353
files: {
5454
'dest/resorted-foo.css': ['src/foo.css'],
55-
},
55+
}
5656
},
5757
bar: {
5858
files: {
5959
'dest/resorted-foo.css': ['src/foo.css'],
60-
'dest/resorted-bar.css': ['src/bar.css'],
61-
},
60+
'dest/resorted-bar.css': ['src/bar.css']
61+
}
6262
}
6363
}
6464
});
@@ -76,7 +76,7 @@ grunt.initConfig({
7676
config: '/path/to/config.json'
7777
},
7878
files: {
79-
'dest/resorted-foo.css': ['src/foo.css'],
79+
'dest/resorted-foo.css': ['src/foo.css']
8080
}
8181
}
8282
}

0 commit comments

Comments
 (0)