Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
Dragonfly is referenced in the next section, but it says "dagonfly". First proposal vanished I presume.
  • Loading branch information
mzdv committed Mar 5, 2015
1 parent 4278ee3 commit 765151f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guide/routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Express routing
menu: guide
lang: en
---

d
# Routing

Routing refers to the definition of end points (URIs) to an application and how it responds to client requests.
Expand Down Expand Up @@ -123,7 +123,7 @@ app.get(/a/, function(req, res) {
res.send('/a/')
})

// will match butterfly, dagonfly; but not butterflyman, dragonfly man, and so on
// will match butterfly, dragonfly; but not butterflyman, dragonfly man, and so on
app.get(/.*fly$/, function(req, res) {
res.send('/.*fly$/')
})
Expand Down

0 comments on commit 765151f

Please sign in to comment.