Skip to content

Commit cbd21ca

Browse files
committed
Fixed sig with the latest behavior
1 parent 3a4f553 commit cbd21ca

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sig/base64.rbs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,13 +277,13 @@ module Base64
277277
# `/`; see [Encoding Character
278278
# Set](Base64.html#module-Base64-label-Encoding+Character+Sets) above:
279279
#
280-
# Base64.strict_encode64("\xFB\xEF\xBE") # => "++++\n"
281-
# Base64.strict_encode64("\xFF\xFF\xFF") # => "////\n"
280+
# Base64.strict_encode64("\xFB\xEF\xBE") # => "++++"
281+
# Base64.strict_encode64("\xFF\xFF\xFF") # => "////"
282282
#
283283
# The returned string may include padding; see
284284
# [Padding](Base64.html#module-Base64-label-Padding) above.
285285
#
286-
# Base64.strict_encode64('*') # => "Kg==\n"
286+
# Base64.strict_encode64('*') # => "Kg=="
287287
#
288288
# The returned string will have no newline characters, regardless of its length;
289289
# see [Newlines](Base64.html#module-Base64-label-Newlines) above:

0 commit comments

Comments
 (0)