From 7fc7651fc68e52401dee530defaf2dbcb434a7f1 Mon Sep 17 00:00:00 2001 From: mame Date: Wed, 20 May 2015 14:24:58 +0000 Subject: * lib/base64.rb: Fix rdoc-formatting for padding argument. [fix GH-905][ci skip] Patch by @davydovanton git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50560 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/base64.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/base64.rb') diff --git a/lib/base64.rb b/lib/base64.rb index 30304cd188..bf33124562 100644 --- a/lib/base64.rb +++ b/lib/base64.rb @@ -78,7 +78,7 @@ module Base64 # Alphabet'' in RFC 4648. # The alphabet uses '-' instead of '+' and '_' instead of '/'. # Note that the result can still contain '='. - # You can remove the padding by setting "padding" as false. + # You can remove the padding by setting +padding+ as false. def urlsafe_encode64(bin, padding: true) str = strict_encode64(bin).tr("+/", "-_") str = str.delete("=") unless padding -- cgit v1.2.1