diff options
author | Abdelkader Boudih <terminale@gmail.com> | 2015-02-04 09:21:19 +0000 |
---|---|---|
committer | Abdelkader Boudih <terminale@gmail.com> | 2015-02-04 09:21:19 +0000 |
commit | 02bebab7f5cd7b164829b7372a8839555357b7bb (patch) | |
tree | fd6e3b3c7fb1b574b14b45e32e8b8d758d70b82b | |
parent | 1c59ffca5c8e998aa5cfc0abb594981de23e64c8 (diff) | |
parent | 539d929b7b32302afe548e4cb06b5f4dd56e9942 (diff) | |
download | rails-02bebab7f5cd7b164829b7372a8839555357b7bb.tar.gz rails-02bebab7f5cd7b164829b7372a8839555357b7bb.tar.bz2 rails-02bebab7f5cd7b164829b7372a8839555357b7bb.zip |
Merge pull request #18812 from yatmsu/fix_typo_in_rails_guides
Fix typo in Creating and Customizing Rails Generators & Templates guide... [ci skip]
-rw-r--r-- | guides/source/generators.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/generators.md b/guides/source/generators.md index 14f451cbc9..366fb3d342 100644 --- a/guides/source/generators.md +++ b/guides/source/generators.md @@ -350,7 +350,7 @@ For example, the following escaped ERB tag would be needed in the template (note the extra `%`)... ```ruby -<%%= stylesheet_include_tag :application %> +<%= stylesheet_include_tag :application %> ``` ...to generate the following output: |