Skip to content
This repository has been archived by the owner on Oct 27, 2019. It is now read-only.

Commit

Permalink
Removed some superfluous elements in a few of the regexen
Browse files Browse the repository at this point in the history
  • Loading branch information
ELLIOTTCABLE committed Nov 5, 2008
1 parent e5a2401 commit 4215f03
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Syntaxes/RubySyntax.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@
<!-- "A double-quoted string with #{interpolations}" -->
<zone name="string.interpolation">
<starts-with>
<expression>(#\{)</expression>
<expression>#\{</expression>
<capture number="0" name="punctuation.definition.string.interpolation.begin.ruby"/>
</starts-with>
<ends-with>
<expression>(\})</expression>
<expression>\}</expression>
<capture number="0" name="punctuation.definition.string.interpolation.end.ruby"/>
</ends-with>
<subzones>
Expand Down Expand Up @@ -141,11 +141,11 @@
<!-- /a regex with #{interpolations}/ -->
<zone name="string.interpolation">
<starts-with>
<expression>(#\{)</expression>
<expression>#\{</expression>
<capture number="0" name="punctuation.definition.string.interpolation.begin.ruby"/>
</starts-with>
<ends-with>
<expression>(\})</expression>
<expression>\}</expression>
<capture number="0" name="punctuation.definition.string.interpolation.end.ruby"/>
</ends-with>
<subzones>
Expand Down

0 comments on commit 4215f03

Please sign in to comment.