1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove unnecessary whitespace

This commit is contained in:
Agis Anastasopoulos 2012-11-16 12:31:14 +02:00
parent 8b178b3f48
commit e7ba7c3b95

View file

@ -215,7 +215,7 @@ CODE
These methods let you ask questions from templates and decide the flow based on the users 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.
```