ruby-changes:44386
From: kazu <ko1@a...>
Date: Thu, 20 Oct 2016 22:18:58 +0900 (JST)
Subject: [ruby-changes:44386] kazu:r56459 (trunk): fix hexdigest [ci skip]
kazu 2016-10-20 22:18:52 +0900 (Thu, 20 Oct 2016) New Revision: 56459 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56459 Log: fix hexdigest [ci skip] Modified files: trunk/ext/digest/md5/md5init.c Index: ext/digest/md5/md5init.c =================================================================== --- ext/digest/md5/md5init.c (revision 56458) +++ ext/digest/md5/md5init.c (revision 56459) @@ -44,7 +44,7 @@ static const rb_digest_metadata_t md5 = https://github.com/ruby/ruby/blob/trunk/ext/digest/md5/md5init.c#L44 * # Use the same object to compute another digest * md5.reset * md5 << "message" - * md5.hexdigest # => "c13557f2..." + * md5.hexdigest # => "78e73102..." */ void Init_md5(void) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/