1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

fix hexdigest [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56459 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2016-10-20 13:18:52 +00:00
parent 13e474f035
commit 6f22fc6b70

View file

@ -44,7 +44,7 @@ static const rb_digest_metadata_t md5 = {
* # Use the same object to compute another digest
* md5.reset
* md5 << "message"
* md5.hexdigest # => "c13557f2..."
* md5.hexdigest # => "78e73102..."
*/
void
Init_md5(void)