mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
README markup fix
This commit is contained in:
parent
6ec80317b6
commit
89506b2009
4 changed files with 4 additions and 4 deletions
|
@ -1688,7 +1688,7 @@ andere Sinatra-Anwendung handeln, es kann jede andere Rack-Anwendung sein
|
|||
|
||||
Manche Situationen erfordern die Erstellung neuer Applikationen zur Laufzeit,
|
||||
ohne dass sie einer Konstanten zugeordnet werden. Dies lässt sich mit
|
||||
`Sinatra.new` erreichen:
|
||||
<tt>Sinatra.new</tt> erreichen:
|
||||
|
||||
require 'sinatra/base'
|
||||
my_app = Sinatra.new { get('/') { "hallo" } }
|
||||
|
|
|
@ -1685,7 +1685,7 @@ aplicación basada en Rack (Rails/Ramaze/Camping/...):
|
|||
|
||||
Puede que en algunas ocasiones quieras crear nuevas aplicaciones en
|
||||
tiempo de ejecución sin tener que asignarlas a una constante. Para
|
||||
esto tenés `Sinatra.new`:
|
||||
esto tenés <tt>Sinatra.new</tt>:
|
||||
|
||||
require 'sinatra/base'
|
||||
mi_app = Sinatra.new { get('/') { "hola" } }
|
||||
|
|
|
@ -1731,7 +1731,7 @@ application Sinatra, ou n'importe quelle application basée sur Rack
|
|||
|
||||
Il se peut que vous ayez besoin de créer une nouvelle application à l'exécution
|
||||
sans avoir à les assigner à une constante, vous pouvez le faire grâce à
|
||||
`Sinatra.new`:
|
||||
<tt>Sinatra.new</tt>:
|
||||
|
||||
require 'sinatra/base'
|
||||
mon_app = Sinatra.new { get('/') { "salut" } }
|
||||
|
|
|
@ -1488,7 +1488,7 @@ application (Rails/Ramaze/Camping/...):
|
|||
=== Dynamic Application Creation
|
||||
|
||||
Sometimes you want to create new applications at runtime without having to
|
||||
assign them to a constant, you can do this with `Sinatra.new`:
|
||||
assign them to a constant, you can do this with <tt>Sinatra.new</tt>:
|
||||
|
||||
require 'sinatra/base'
|
||||
my_app = Sinatra.new { get('/') { "hi" } }
|
||||
|
|
Loading…
Reference in a new issue