From f827b116295aa37539aa55483eedea97c31aae17 Mon Sep 17 00:00:00 2001 From: Alejandro Exojo Date: Sun, 2 Nov 2025 09:21:20 +0100 Subject: [PATCH] [ruby/erb] Fix typo in documentation (https://github.com/ruby/erb/pull/91) https://github.com/ruby/erb/commit/6bceee7d6e --- lib/erb.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/erb.rb b/lib/erb.rb index 884a63035c..d3bbc4979c 100644 --- a/lib/erb.rb +++ b/lib/erb.rb @@ -467,7 +467,7 @@ require 'erb/util' # ``` # # 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 }