Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/erb.rb
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@
# ```
#
# You can give `trim_mode: '>'` to suppress the trailing newline
# for each line that ends with `'%<'` (regardless of its beginning):
# for each line that ends with `'%>'` (regardless of its beginning):
#
# ```
# ERB.new(template, trim_mode: '>').result.lines.each {|line| puts line.inspect }
Expand Down
2 changes: 1 addition & 1 deletion lib/unicode_normalize/normalize.rb
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def self.nfc_one(string)
if last_class<accent_class and composite = COMPOSITION_TABLE[start+accent]
start = composite
elsif accent_class == 0
result += start+accents
result << start << accents
start = accent
accents = ''
last_class = -1
Expand Down