aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/string
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-03-30 14:01:42 +0530
committerVipul A M <vipulnsward@gmail.com>2013-03-30 14:01:42 +0530
commit5a0e583f40e0e1e7018cfadb4cfe147a747d2f2d (patch)
tree4ecccc09c80d3383f258b409a9a88b9df48dfb36 /activesupport/lib/active_support/core_ext/string
parent022ed6c763d91e1bb032150fc7ec5991141f8119 (diff)
downloadrails-5a0e583f40e0e1e7018cfadb4cfe147a747d2f2d.tar.gz
rails-5a0e583f40e0e1e7018cfadb4cfe147a747d2f2d.tar.bz2
rails-5a0e583f40e0e1e7018cfadb4cfe147a747d2f2d.zip
fix some typos in AS
Diffstat (limited to 'activesupport/lib/active_support/core_ext/string')
-rw-r--r--activesupport/lib/active_support/core_ext/string/indent.rb2
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.