diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-03-30 08:47:06 -0700 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-03-30 08:47:06 -0700 |
commit | 2432469e7f076b878e0551becaddc2807667f677 (patch) | |
tree | 697f2e7f303dcad5ce337f4081e5d015d1bb0941 /activesupport/lib/active_support | |
parent | 92d6dacc348a4e42d314c813a650ac578976d4c4 (diff) | |
parent | 5a0e583f40e0e1e7018cfadb4cfe147a747d2f2d (diff) | |
download | rails-2432469e7f076b878e0551becaddc2807667f677.tar.gz rails-2432469e7f076b878e0551becaddc2807667f677.tar.bz2 rails-2432469e7f076b878e0551becaddc2807667f677.zip |
Merge pull request #10007 from vipulnsward/fix_AS_typos
Fix some typos in AS
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/indent.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/indent.rb b/activesupport/lib/active_support/core_ext/string/indent.rb index afc3032272..ce3a69cf5f 100644 --- a/activesupport/lib/active_support/core_ext/string/indent.rb +++ b/activesupport/lib/active_support/core_ext/string/indent.rb @@ -29,7 +29,7 @@ class String # "foo\n\t\tbar".indent(2) # => "\t\tfoo\n\t\t\t\tbar" # "foo".indent(2, "\t") # => "\t\tfoo" # - # While +indent_string+ is tipically one space or tab, it may be any string. + # While +indent_string+ is typically one space or tab, it may be any string. # # The third argument, +indent_empty_lines+, is a flag that says whether # empty lines should be indented. Default is false. |