1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

quick doc fix

This commit is contained in:
bmizerany 2008-05-07 14:18:43 -07:00
parent c1aa6663a5
commit f71330e659

View file

@ -88,7 +88,7 @@ If a file exists that maps to the REQUEST_PATH then it is served and the request
= Views (if you need MVC) = Views (if you need MVC)
All views are looked up in: All file-based views are looked up in:
root root
| - views/ | - views/
@ -150,12 +150,12 @@ This one is cool:
__END__ __END__
## layout @@ layout
X X
= yield = yield
X X
## index @@ index
%div.title Hello world!!!!! %div.title Hello world!!!!!
Try it! Try it!