Skip to content

Commit

Permalink
fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatov committed Jul 21, 2011
1 parent 84756ce commit b3b78a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/scala/tools/colladoc/api/GridAPI.scala
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ object GridAPI extends RestHelper {
if (User.superUser_?) {
for {
Spage <- S.param("page") ?~ "page parameter missing" ~> 400
Srows <- S.param("rows") ?~ "row parameter missing" ~> 400
Srows <- S.param("rows") ?~ "rows parameter missing" ~> 400
Ssord <- S.param("sord") ?~ "sord parameter missing" ~> 400
Ssidx <- S.param("sidx") ?~ "sidx parameter missing" ~> 400
} yield {
Expand Down

0 comments on commit b3b78a1

Please sign in to comment.