Skip to content

Commit

Permalink
LOLCODE: Removed useless parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
Golmote committed Aug 26, 2015
1 parent 6bb0e27 commit 8147c9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/prism-lolcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ Prism.languages.lolcode = {
lookbehind: true
},
'variable': {
pattern: /(^|\s)(?:IT)(?=\s|,|$)/,
pattern: /(^|\s)IT(?=\s|,|$)/,
lookbehind: true
},
'operator': {
pattern: /(^|\s)(?:NOT|BOTH SAEM|DIFFRINT|(?:SUM|DIFF|PRODUKT|QUOSHUNT|MOD|BIGGR|SMALLR|BOTH|EITHER|WON|ALL|ANY) OF)(?=\s|,|$)/,
lookbehind: true
},
'punctuation': /\.{3}|\u2026|,|!/
'punctuation': /\.{3}||,|!/
};
2 changes: 1 addition & 1 deletion components/prism-lolcode.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8147c9b

Please sign in to comment.