diff options
author | Vipul A M <vipulnsward@gmail.com> | 2016-07-02 02:18:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-02 02:18:06 -0700 |
commit | bda7ef08f41262688a2bc63591d9f75718f6a9fc (patch) | |
tree | 60ee4c5681747a1ffb75d0b7406987ca4155944c /railties | |
parent | edc5603b1d0987ab60637d562c82c8f2ca9fd8f9 (diff) | |
parent | 45ecfc082a2db276b25f7edde31837ed89170eac (diff) | |
download | rails-bda7ef08f41262688a2bc63591d9f75718f6a9fc.tar.gz rails-bda7ef08f41262688a2bc63591d9f75718f6a9fc.tar.bz2 rails-bda7ef08f41262688a2bc63591d9f75718f6a9fc.zip |
Merge pull request #25646 from y-yagi/refer_to_rails_command_instead_of_rake
refer to rails command instead of rake in doc of `SourceAnnotationExtractor`
Diffstat (limited to 'railties')
-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 |