Skip to content

Commit

Permalink
Merge pull request #1528 from natesilva/patch-1
Browse files Browse the repository at this point in the history
fix asterisks being interpreted as Markdown
  • Loading branch information
Eran Hammer committed Mar 28, 2014
2 parents 9a6e983 + cbb384a commit c25f190
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/Reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -693,8 +693,7 @@ server.route({
});
```

In addition to the optional '?' suffix, a parameter name can also specify the number of matching segments using the '*' suffix, followed by a number
greater than 1. If the number of expected parts can be anything, then use '*' without a number (matching any number of segments can only be used in the
In addition to the optional `?` suffix, a parameter name can also specify the number of matching segments using the `*` suffix, followed by a number greater than 1. If the number of expected parts can be anything, then use `*` without a number (matching any number of segments can only be used in the
last path segment).

```javascript
Expand Down

0 comments on commit c25f190

Please sign in to comment.