Skip to content

Commit 16ce416

Browse files
committed
remove trailing commas
1 parent 0aab1b0 commit 16ce416

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/languages/rust.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -258,20 +258,20 @@ export default function(hljs) {
258258
variants: [
259259
{
260260
begin: /\(/,
261-
end: /\)/,
261+
end: /\)/
262262
},
263263
{
264264
begin: /\[/,
265-
end: /\]/,
265+
end: /\]/
266266
},
267267
{
268268
begin: /\{/,
269-
end: /\}/,
270-
},
269+
end: /\}/
270+
}
271271
],
272272
contains: [
273273
'self',
274-
META_STRING,
274+
META_STRING
275275
]
276276
},
277277
]

0 commit comments

Comments
 (0)