diff --git a/core/io.rbs b/core/io.rbs index 501538e45..5b863b327 100644 --- a/core/io.rbs +++ b/core/io.rbs @@ -3104,8 +3104,8 @@ class IO < Object # # Returns an Enumerator if no block is given. # - def each_line: (?String sep, ?Integer limit) { (String line) -> void } -> self - | (?String sep, ?Integer limit) -> ::Enumerator[String, self] + def each_line: (?string sep, ?int limit, ?chomp: boolish) { (String line) -> void } -> self + | (?string sep, ?int limit, ?chomp: boolish) -> ::Enumerator[String, self] #