Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Dipert committed May 31, 2009
1 parent 35e0b7e commit d085f33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.markdown
Expand Up @@ -20,9 +20,9 @@ Example
// parse matching requests, saving things prefixed with ':' as params
get("/date/:year/:month/:day") {
<ul>
<li>Year: {params("year")}</li>
<li>Month: {params("month")}</li>
<li>Day: {params("day")}</li>
<li>Year: {params(":year")}</li>
<li>Month: {params(":month")}</li>
<li>Day: {params(":day")}</li>
</ul>
}

Expand Down

0 comments on commit d085f33

Please sign in to comment.