aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAgis Anastasopoulos <corestudiosinc@gmail.com>2012-11-16 12:31:14 +0200
committerAgis Anastasopoulos <corestudiosinc@gmail.com>2012-11-16 12:31:14 +0200
commite7ba7c3b95be4f46d7d27fcfd82dd4865c159393 (patch)
tree816276be0c999d85a8ea444eaeeef8f442b8640d
parent8b178b3f480553bedc09683371df0aa87a421975 (diff)
downloadrails-e7ba7c3b95be4f46d7d27fcfd82dd4865c159393.tar.gz
rails-e7ba7c3b95be4f46d7d27fcfd82dd4865c159393.tar.bz2
rails-e7ba7c3b95be4f46d7d27fcfd82dd4865c159393.zip
Remove unnecessary whitespace
-rw-r--r--guides/source/rails_application_templates.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/rails_application_templates.md b/guides/source/rails_application_templates.md
index 0f2c987328..46828b8737 100644
--- a/guides/source/rails_application_templates.md
+++ b/guides/source/rails_application_templates.md
@@ -215,7 +215,7 @@ CODE
These methods let you ask questions from templates and decide the flow based on the user’s answer. Lets say you want to freeze rails only if the user want to:
```ruby
-rake("rails:freeze:gems") if yes?("Freeze rails gems ?")
+rake("rails:freeze:gems") if yes?("Freeze rails gems?")
# no?(question) acts just the opposite.
```