summaryrefslogtreecommitdiff
path: root/lib/coderay/scanners/c.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2019-11-24 15:22:21 +0100
committerKornelius Kalnbach <murphy@rubychan.de>2019-11-24 15:22:21 +0100
commitb5b3430d4635682b767c44469e28a70fe234187e (patch)
tree97eeeea923848158dfedd8e60142511a72839363 /lib/coderay/scanners/c.rb
parent591c67b65dc4daada24ed1809605e9cbcfb3336b (diff)
downloadcoderay-b5b3430d4635682b767c44469e28a70fe234187e.tar.gz
fix spaces around operators (RuboCop)
Diffstat (limited to 'lib/coderay/scanners/c.rb')
-rw-r--r--lib/coderay/scanners/c.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/scanners/c.rb b/lib/coderay/scanners/c.rb
index 84b6e8e..fb2f30d 100644
--- a/lib/coderay/scanners/c.rb
+++ b/lib/coderay/scanners/c.rb
@@ -37,7 +37,7 @@ module Scanners
add(PREDEFINED_CONSTANTS, :predefined_constant) # :nodoc:
ESCAPE = / [rbfntv\n\\'"] | x[a-fA-F0-9]{1,2} | [0-7]{1,3} /x # :nodoc:
- UNICODE_ESCAPE = / u[a-fA-F0-9]{4} | U[a-fA-F0-9]{8} /x # :nodoc:
+ UNICODE_ESCAPE = / u[a-fA-F0-9]{4} | U[a-fA-F0-9]{8} /x # :nodoc:
protected