ruby-changes:44383
From: svn <ko1@a...>
Date: Thu, 20 Oct 2016 16:57:36 +0900 (JST)
Subject: [ruby-changes:44383] svn:r56456 (trunk): * remove trailing spaces.
svn 2016-10-20 16:57:31 +0900 (Thu, 20 Oct 2016) New Revision: 56456 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56456 Log: * remove trailing spaces. Modified files: trunk/ext/digest/digest.c trunk/ext/digest/md5/md5init.c trunk/ext/digest/rmd160/rmd160init.c trunk/ext/digest/sha1/sha1init.c trunk/ext/digest/sha2/lib/sha2.rb Index: ext/digest/rmd160/rmd160init.c =================================================================== --- ext/digest/rmd160/rmd160init.c (revision 56455) +++ ext/digest/rmd160/rmd160init.c (revision 56456) @@ -29,7 +29,7 @@ static const rb_digest_metadata_t rmd160 https://github.com/ruby/ruby/blob/trunk/ext/digest/rmd160/rmd160init.c#L29 * * == Examples * require 'digest' - * + * * # Compute a complete digest * Digest::RMD160.hexdigest 'abc' #=> "8eb208f7..." * Index: ext/digest/sha1/sha1init.c =================================================================== --- ext/digest/sha1/sha1init.c (revision 56455) +++ ext/digest/sha1/sha1init.c (revision 56456) @@ -33,7 +33,7 @@ static const rb_digest_metadata_t sha1 = https://github.com/ruby/ruby/blob/trunk/ext/digest/sha1/sha1init.c#L33 * * == Examples * require 'digest' - * + * * # Compute a complete digest * Digest::SHA1.hexdigest 'abc' #=> "a9993e36..." * Index: ext/digest/sha2/lib/sha2.rb =================================================================== --- ext/digest/sha2/lib/sha2.rb (revision 56455) +++ ext/digest/sha2/lib/sha2.rb (revision 56456) @@ -28,18 +28,18 @@ module Digest https://github.com/ruby/ruby/blob/trunk/ext/digest/sha2/lib/sha2.rb#L28 # # ==Examples # require 'digest' - # + # # # Compute a complete digest # Digest::SHA2.hexdigest 'abc' # => "ba7816bf8..." # Digest::SHA2.new(256).hexdigest 'abc' # => "ba7816bf8..." # Digest::SHA256.hexdigest 'abc' # => "ba7816bf8..." - # + # # Digest::SHA2.new(384).hexdigest 'abc' # => "cb00753f4..." # Digest::SHA384.hexdigest 'abc' # => "cb00753f4..." - # + # # Digest::SHA2.new(512).hexdigest 'abc' # => "ddaf35a19..." # Digest::SHA512.hexdigest 'abc' # => "ddaf35a19..." - # + # # # Compute digest by chunks # sha2 = Digest::SHA2.new # =>#<Digest::SHA2:256> # sha2.update "ab" Index: ext/digest/digest.c =================================================================== --- ext/digest/digest.c (revision 56455) +++ ext/digest/digest.c (revision 56456) @@ -509,7 +509,7 @@ rb_digest_class_init(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/digest/digest.c#L509 * typedef int (*rb_digest_hash_init_func_t)(void *); * typedef void (*rb_digest_hash_update_func_t)(void *, unsigned char *, size_t); * typedef int (*rb_digest_hash_finish_func_t)(void *, unsigned char *); - * + * * typedef struct { * int api_version; * size_t digest_len; @@ -651,7 +651,7 @@ rb_digest_base_reset(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/digest/digest.c#L651 } /* - * call-seq: + * call-seq: * digest_base.update(string) -> digest_base * digest_base << string -> digest_base * Index: ext/digest/md5/md5init.c =================================================================== --- ext/digest/md5/md5init.c (revision 56455) +++ ext/digest/md5/md5init.c (revision 56456) @@ -31,7 +31,7 @@ static const rb_digest_metadata_t md5 = https://github.com/ruby/ruby/blob/trunk/ext/digest/md5/md5init.c#L31 * * == Examples * require 'digest' - * + * * # Compute a complete digest * Digest::MD5.hexdigest 'abc' #=> "90015098..." * -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/