Skip to content

Commit

Permalink
fix teapot example
Browse files Browse the repository at this point in the history
Conflicts:

	README.ru.rdoc
  • Loading branch information
rkh committed Aug 21, 2011
1 parent df866ad commit 696d895
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.de.rdoc
Expand Up @@ -947,7 +947,7 @@ Vergleichbar mit +body+ lassen sich auch Status-Code und Header setzen:
get '/foo' do
status 418
headers \
"Allow" => "BREW, POST, GET, PROPFIND, WHEN"
"Allow" => "BREW, POST, GET, PROPFIND, WHEN",
"Refresh" => "Refresh: 20; http://www.ietf.org/rfc/rfc2324.txt"
halt "Ich bin ein Teekesselchen"
end
Expand Down
2 changes: 1 addition & 1 deletion README.es.rdoc
Expand Up @@ -916,7 +916,7 @@ De manera similar, también podés asignar el código de estado y encabezados:
get '/foo' do
status 418
headers \
"Allow" => "BREW, POST, GET, PROPFIND, WHEN"
"Allow" => "BREW, POST, GET, PROPFIND, WHEN",
"Refresh" => "Refresh: 20; http://www.ietf.org/rfc/rfc2324.txt"
body "I'm a tea pot!"
end
Expand Down
2 changes: 1 addition & 1 deletion README.fr.rdoc
Expand Up @@ -940,7 +940,7 @@ retour et les entêtes :
get '/foo' do
status 418
headers \
"Allow" => "BREW, POST, GET, PROPFIND, WHEN"
"Allow" => "BREW, POST, GET, PROPFIND, WHEN",
"Refresh" => "Refresh: 20; http://www.ietf.org/rfc/rfc2324.txt"
body "I'm a tea pot!"
end
Expand Down
2 changes: 1 addition & 1 deletion README.rdoc
Expand Up @@ -928,7 +928,7 @@ Similar to the body, you can also set the status code and headers:
get '/foo' do
status 418
headers \
"Allow" => "BREW, POST, GET, PROPFIND, WHEN"
"Allow" => "BREW, POST, GET, PROPFIND, WHEN",
"Refresh" => "Refresh: 20; http://www.ietf.org/rfc/rfc2324.txt"
body "I'm a tea pot!"
end
Expand Down
2 changes: 1 addition & 1 deletion README.zh.rdoc
Expand Up @@ -884,7 +884,7 @@ Session被用来在请求之间保持状态。如果被激活,每一个用户
get '/foo' do
status 418
headers \
"Allow" => "BREW, POST, GET, PROPFIND, WHEN"
"Allow" => "BREW, POST, GET, PROPFIND, WHEN",
"Refresh" => "Refresh: 20; http://www.ietf.org/rfc/rfc2324.txt"
body "I'm a tea pot!"
end
Expand Down

0 comments on commit 696d895

Please sign in to comment.