Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
snoyberg committed Apr 16, 2012
1 parent bf766e3 commit b57a898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wai-extra/Network/Wai/Middleware/MethodOverride.hs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ methodOverride app req =
app req'
where
req' =
case (requestMethod m, join $ lookup "_method" $ queryString req) of
case (requestMethod req, join $ lookup "_method" $ queryString req) of
("POST", Just m) -> req { requestMethod = m }
_ -> req

0 comments on commit b57a898

Please sign in to comment.