Skip to content

Commit

Permalink
Fix offense.
Browse files Browse the repository at this point in the history
  • Loading branch information
parkr committed Jun 15, 2016
1 parent 4a2b962 commit ddf8335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jekyll/filters.rb
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def uri_escape(input)
#
# Returns the formatted String
def normalize_whitespace(input)
input.to_s.gsub(/\s+/, " ").strip
input.to_s.gsub(%r!\s+!, " ").strip
end

# Count the number of words in the input string.
Expand Down

0 comments on commit ddf8335

Please sign in to comment.