Skip to content

Commit

Permalink
README.md: fix regular expression example
Browse files Browse the repository at this point in the history
  • Loading branch information
godfat committed Oct 14, 2012
1 parent 55885f0 commit f0033b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Rack applications or Rack middlewares. Under 200 lines of code.
* No templates * No templates
* No ORM * No ORM
* No `dup` in `call` * No `dup` in `call`
* Regular expression routes, e.g. `get %r{/(\d+)}` * Regular expression routes, e.g. `get %r{^/(?<id>\d+)$}`
* String routes, e.g. `get '/'` * String routes, e.g. `get '/'`
* Custom routes, e.g. `get Matcher.new` * Custom routes, e.g. `get Matcher.new`
* Build for either Rack applications or Rack middlewares * Build for either Rack applications or Rack middlewares
Expand Down

0 comments on commit f0033b5

Please sign in to comment.