aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-04-06 13:43:11 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-04-06 13:43:11 -0300
commit4968eeb3864d20ff9cd1a37fd2ca281ec1e55f89 (patch)
tree5cf44a22e19faca22063463e53ee2a3d4ea33ee8
parentb69b908cf7166977e13235d699970511dfd17755 (diff)
parentcb04fa41e71e2c409b4cbe1f5e84322d9936d12f (diff)
downloadrails-4968eeb3864d20ff9cd1a37fd2ca281ec1e55f89.tar.gz
rails-4968eeb3864d20ff9cd1a37fd2ca281ec1e55f89.tar.bz2
rails-4968eeb3864d20ff9cd1a37fd2ca281ec1e55f89.zip
Merge pull request #19668 from y-yagi/notes_default_dir
correct the directory which rake notes look by default [ci skip]
-rw-r--r--guides/source/command_line.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md
index b409f20122..3bd84b1ce6 100644
--- a/guides/source/command_line.md
+++ b/guides/source/command_line.md
@@ -470,7 +470,7 @@ app/models/article.rb:
NOTE. When using specific annotations and custom annotations, the annotation name (FIXME, BUG etc) is not displayed in the output lines.
-By default, `rake notes` will look in the `app`, `config`, `lib`, `bin` and `test` directories. If you would like to search other directories, you can provide them as a comma separated list in an environment variable `SOURCE_ANNOTATION_DIRECTORIES`.
+By default, `rake notes` will look in the `app`, `config`, `db`, `lib` and `test` directories. If you would like to search other directories, you can provide them as a comma separated list in an environment variable `SOURCE_ANNOTATION_DIRECTORIES`.
```bash
$ export SOURCE_ANNOTATION_DIRECTORIES='spec,vendor'