Skip to content

Commit

Permalink
Merge pull request #16 from weip/master
Browse files Browse the repository at this point in the history
Removed double escape character in some Route snippets
  • Loading branch information
patricksamson committed May 2, 2016
2 parents 8155e3c + 69ee751 commit 5c140f1
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 5c140f1

Please sign in to comment.