Skip to content

Commit

Permalink
Fix Unmatched delimiter: ).
Browse files Browse the repository at this point in the history
  • Loading branch information
mvitz committed Dec 8, 2014
1 parent 659fe94 commit b0f17fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/statuses/routing.clj
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
(GET [route/update-template, :id #"[0-9]+"] [id :as r] (page id r))
(DELETE [route/update-template, :id #"[0-9]+"] [id :as r] (delete-entry id r))
(GET [route/update-replyform-template, :id #"[0-9]+"] [id :as r] (replyform id r))
(GET [route/conversation-template [id :as r] (conversation id r))
(GET route/conversation-template [id :as r] (conversation id r))
(GET route/info-template [] info)
(GET route/too-long-template [length :as r] (too-long length r))
(not-found "Not Found"))
Expand Down

0 comments on commit b0f17fc

Please sign in to comment.