Skip to content

Commit

Permalink
Fixed inaccuracy in the client documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtodd committed Jun 12, 2008
1 parent 7b79656 commit 84d7025
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion content/docs/clients.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
end

def show
ok Message[params[:id]]
if (msg = Message[params[:id]])
ok msg
else
raise NotFound.new
end
end

def create
Expand Down

0 comments on commit 84d7025

Please sign in to comment.