Fix offense.

This commit is contained in:
Parker Moore 2016-06-15 10:33:30 -07:00
parent 4a2b96293b
commit ddf833505c
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ module Jekyll
#
# 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.