Skip to content

Commit cb7a392

Browse files
committed
Remove redundant declaration of assignment
1 parent bf1dc80 commit cb7a392

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/languages/r.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -201,12 +201,6 @@ export default function(hljs) {
201201
},
202202

203203
// Operators/punctuation when they're not directly followed by numbers
204-
{
205-
// Avoid false detections of other languages.
206-
scope: 'operator',
207-
relevance: 0,
208-
match: /<-/
209-
},
210204
{
211205
// Relevance boost for the most common assignment form.
212206
scope: { 3: 'operator' },
@@ -217,6 +211,7 @@ export default function(hljs) {
217211
/\s+/
218212
]
219213
},
214+
220215
{
221216
scope: 'operator',
222217
variants: [

0 commit comments

Comments
 (0)