diff --git a/_includes/api/en/4x/app-param.md b/_includes/api/en/4x/app-param.md index d4b6e4d4e..99513e3a0 100644 --- a/_includes/api/en/4x/app-param.md +++ b/_includes/api/en/4x/app-param.md @@ -99,7 +99,7 @@ app.get('/range/:range', function(req, res) { ~~~
-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: