fix markup for multi word inline code in README

This commit is contained in:
Konstantin Haase 2010-09-03 08:00:27 +02:00
parent fa527095a2
commit 626f68904b
1 changed files with 3 additions and 3 deletions

View File

@ -129,9 +129,9 @@ also accepted.
You can return any object that would either be a valid Rack response, Rack body object
or HTTP status code:
* An Array with three elements: +[status (Fixnum), headers (Hash), response body (responds to #each)]+
* An Array with two elements: +[status (Fixnum), response body (responds to #each)]+
* An object that responds to #each and passes nothing but strings to the given block
* An Array with three elements: <tt>[status (Fixnum), headers (Hash), response body (responds to #each)]</tt>
* An Array with two elements: <tt>[status (Fixnum), response body (responds to #each)]</tt>
* An object that responds to +#each+ and passes nothing but strings to the given block
* A Fixnum representing the status code
That way we can for instance easily implement a streaming example: