From 626f68904b355641e613592f5076cd041a3a3691 Mon Sep 17 00:00:00 2001 From: Konstantin Haase Date: Fri, 3 Sep 2010 08:00:27 +0200 Subject: [PATCH] fix markup for multi word inline code in README --- README.rdoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rdoc b/README.rdoc index 8f2c8867..1e3d8df0 100644 --- a/README.rdoc +++ b/README.rdoc @@ -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: [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 * A Fixnum representing the status code That way we can for instance easily implement a streaming example: