diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-08-24 19:37:29 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-08-24 19:37:29 -0300 |
commit | f5f4d135a23dc084be66659222e030de94d62dc6 (patch) | |
tree | 78739a31c79ba0277aad8a34af39fed5d1b25e89 | |
parent | c25cf09c13f245e89a043b3312f3d6a335276354 (diff) | |
parent | 12208d4f66f05ff570db801d7a6419ccda3933a4 (diff) | |
download | rails-f5f4d135a23dc084be66659222e030de94d62dc6.tar.gz rails-f5f4d135a23dc084be66659222e030de94d62dc6.tar.bz2 rails-f5f4d135a23dc084be66659222e030de94d62dc6.zip |
Merge pull request #21361 from olleicua/master
minor documentation improvement [ci skip]
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/strip.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/strip.rb b/activesupport/lib/active_support/core_ext/string/strip.rb index 086c610976..9fdd9d8d2e 100644 --- a/activesupport/lib/active_support/core_ext/string/strip.rb +++ b/activesupport/lib/active_support/core_ext/string/strip.rb @@ -17,8 +17,8 @@ class String # # the user would see the usage message aligned against the left margin. # - # Technically, it looks for the least indented line in the whole string, and removes - # that amount of leading whitespace. + # Technically, it looks for the least indented non-empty line + # in the whole string, and removes that amount of leading whitespace. def strip_heredoc indent = scan(/^[ \t]*(?=\S)/).min.try(:size) || 0 gsub(/^[ \t]{#{indent}}/, '') |