diff options
author | Yasuhiko Katoh (y@su) <toyasyu@gmail.com> | 2015-02-04 18:14:40 +0900 |
---|---|---|
committer | Yasuhiko Katoh (y@su) <toyasyu@gmail.com> | 2015-02-04 18:14:40 +0900 |
commit | 539d929b7b32302afe548e4cb06b5f4dd56e9942 (patch) | |
tree | fd6e3b3c7fb1b574b14b45e32e8b8d758d70b82b | |
parent | 1c59ffca5c8e998aa5cfc0abb594981de23e64c8 (diff) | |
download | rails-539d929b7b32302afe548e4cb06b5f4dd56e9942.tar.gz rails-539d929b7b32302afe548e4cb06b5f4dd56e9942.tar.bz2 rails-539d929b7b32302afe548e4cb06b5f4dd56e9942.zip |
Fix typo in Creating and Customizing Rails Generators & Templates guides
-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: |