From cbd21ca11698759815a1ac4aa001c04b49b13a72 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 29 Jan 2026 16:38:54 +0900 Subject: [PATCH] Fixed sig with the latest behavior --- sig/base64.rbs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sig/base64.rbs b/sig/base64.rbs index 3eb18ea..522b7ac 100644 --- a/sig/base64.rbs +++ b/sig/base64.rbs @@ -277,13 +277,13 @@ module Base64 # `/`; see [Encoding Character # Set](Base64.html#module-Base64-label-Encoding+Character+Sets) above: # - # Base64.strict_encode64("\xFB\xEF\xBE") # => "++++\n" - # Base64.strict_encode64("\xFF\xFF\xFF") # => "////\n" + # Base64.strict_encode64("\xFB\xEF\xBE") # => "++++" + # Base64.strict_encode64("\xFF\xFF\xFF") # => "////" # # The returned string may include padding; see # [Padding](Base64.html#module-Base64-label-Padding) above. # - # Base64.strict_encode64('*') # => "Kg==\n" + # Base64.strict_encode64('*') # => "Kg==" # # The returned string will have no newline characters, regardless of its length; # see [Newlines](Base64.html#module-Base64-label-Newlines) above: