Skip to content

Commit

Permalink
spelling fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hacksparrow committed May 17, 2015
1 parent 02daabe commit e015f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/api/en/4x/app-param.md
Expand Up @@ -99,7 +99,7 @@ app.get('/range/:range', function(req, res) {
~~~

<div class="doc-box doc-info" markdown="1">
The '`.`' character can't be used to caputure a character in your capturing regexp (for example you can't use `'/user-.+/'` to capture `'users-gami'`. Use `[\\s\\S]` or `[\\w\\W]` instead (as in `'/user-[\\s\\S]+/'`).
The '`.`' character can't be used to capture a character in your capturing regexp (for example you can't use `'/user-.+/'` to capture `'users-gami'`. Use `[\\s\\S]` or `[\\w\\W]` instead (as in `'/user-[\\s\\S]+/'`).

Examples:

Expand Down

0 comments on commit e015f89

Please sign in to comment.