diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-07-02 18:11:42 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-07-02 18:16:04 +0900 |
commit | 45ecfc082a2db276b25f7edde31837ed89170eac (patch) | |
tree | 4dac25e622c0af1cfa2b416ad0a42a4160e4aa4f /railties/lib | |
parent | c73fd517d1ecba5a3f9d1e07ff3e227b6262ca44 (diff) | |
download | rails-45ecfc082a2db276b25f7edde31837ed89170eac.tar.gz rails-45ecfc082a2db276b25f7edde31837ed89170eac.tar.bz2 rails-45ecfc082a2db276b25f7edde31837ed89170eac.zip |
refer to rails command instead of rake in doc of `SourceAnnotationExtractor` [ci skip]
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/source_annotation_extractor.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/rails/source_annotation_extractor.rb b/railties/lib/rails/source_annotation_extractor.rb index 8dd87b6cc5..ca195bd752 100644 --- a/railties/lib/rails/source_annotation_extractor.rb +++ b/railties/lib/rails/source_annotation_extractor.rb @@ -1,9 +1,9 @@ # Implements the logic behind the rake tasks for annotations like # -# rake notes -# rake notes:optimize +# rails notes +# rails notes:optimize # -# and friends. See <tt>rake -T notes</tt> and <tt>railties/lib/rails/tasks/annotations.rake</tt>. +# and friends. See <tt>rails -T notes</tt> and <tt>railties/lib/rails/tasks/annotations.rake</tt>. # # Annotation objects are triplets <tt>:line</tt>, <tt>:tag</tt>, <tt>:text</tt> that # represent the line where the annotation lives, its tag, and its text. Note |