Skip to content

Commit

Permalink
Removed double escape character in some Route snippets
Browse files Browse the repository at this point in the history
It wasn't highlithing the closing brace.
  • Loading branch information
weip committed May 2, 2016
1 parent 8155e3c commit 69ee751
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion snippets/Route/Route-any.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<snippet>
<content><![CDATA[
Route::any('${2:users/{id\\}}', function(${3:$id}) {
Route::any('${2:users/{id\}}', function(${3:$id}) {
${4://}
});
]]></content>
Expand Down
2 changes: 1 addition & 1 deletion snippets/Route/Route-closure.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<snippet>
<content><![CDATA[
Route::${1:get}('${2:users/{id\\}}', function(${3:$id}) {
Route::${1:get}('${2:users/{id\}}', function(${3:$id}) {
${4://}
});
]]></content>
Expand Down
2 changes: 1 addition & 1 deletion snippets/Route/Route-controllerAction.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<snippet>
<content><![CDATA[
Route::${1:get}('${2:users/{id\\}}', '${3:$UserController@profile}');
Route::${1:get}('${2:users/{id\}}', '${3:$UserController@profile}');
]]></content>
<tabTrigger>Route::controllerAction</tabTrigger>
<scope>source.php</scope>
Expand Down

0 comments on commit 69ee751

Please sign in to comment.