We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ac472b + adcb69e commit 394078cCopy full SHA for 394078c
README.md
@@ -32,7 +32,7 @@ var app = routify(connect(), {
32
})
33
```
34
35
-### app.[VERB](path || regexp, middleware...)
+### app\[VERB](path || regexp, middleware...)
36
37
Verb can be any HTTP method supported by node.
38
`delete` is also aliased as `del`.
@@ -43,7 +43,7 @@ it will also match any `GET` routes as well.
43
To match `HEAD` and not `GET`,
44
do `app.head()` before any `app.get()`.
45
46
-### app.[all](path || regexp, middleware...)
+### app.all(path || regexp, middleware...)
47
48
Will match any request with the given path or regexp.
49
0 commit comments