Skip to content

Commit 9e34127

Browse files
committed
Fix syntax error in the command_line guide [ci skip]
1 parent 9eb72ac commit 9e34127

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guides/source/command_line.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ end
503503
You can group tasks by placing them in namespaces:
504504
505505
```ruby
506-
namespace :db
506+
namespace :db do
507507
desc "This task does nothing"
508508
task :nothing do
509509
# Seriously, nothing
@@ -517,7 +517,7 @@ Invocation of the tasks will look like:
517517
rake task_name
518518
rake "task_name[value 1]" # entire argument string should be quoted
519519
rake db:nothing
520-
```
520+
```
521521
522522
NOTE: If your need to interact with your application models, perform database queries and so on, your task should depend on the `environment` task, which will load your application code.
523523

0 commit comments

Comments
 (0)