diff options
author | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2015-12-22 03:06:35 +0530 |
---|---|---|
committer | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2015-12-22 03:06:35 +0530 |
commit | 656ab0dfc994b9fef5b7e00a54f8f1bd54e83b6b (patch) | |
tree | 6b3f7ebd9635f8cb30ff89ebff71d235f230905e /guides/rails_guides | |
parent | 73dcf00c1f95fb561e0d7880828e4a92de4562f3 (diff) | |
download | rails-656ab0dfc994b9fef5b7e00a54f8f1bd54e83b6b.tar.gz rails-656ab0dfc994b9fef5b7e00a54f8f1bd54e83b6b.tar.bz2 rails-656ab0dfc994b9fef5b7e00a54f8f1bd54e83b6b.zip |
[ci skip] Fix typo
Diffstat (limited to 'guides/rails_guides')
-rw-r--r-- | guides/rails_guides/markdown/renderer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/rails_guides/markdown/renderer.rb b/guides/rails_guides/markdown/renderer.rb index 554d94ad50..73ca600361 100644 --- a/guides/rails_guides/markdown/renderer.rb +++ b/guides/rails_guides/markdown/renderer.rb @@ -16,7 +16,7 @@ HTML end def header(text, header_level) - # Always increase the heading level by, so we can use h1, h2 heading in the document + # Always increase the heading level by 1, so we can use h1, h2 heading in the document header_level += 1 %(<h#{header_level}>#{text}</h#{header_level}>) |