diff options
author | taki <taki@users.noreply.github.com> | 2020-03-21 09:22:11 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2020-03-21 16:38:04 +0900 |
commit | b2041c8b709ba56774005340a4bd2096f4c119aa (patch) | |
tree | f4d737744cf887390f447570c10847b2ed4eaf32 | |
parent | be76e86e69106c6906322dc30aa75c3ff65da63c (diff) |
[ci skip]Fix return type on RbConfig.fire_update!
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/2972
-rwxr-xr-x | tool/mkconfig.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/mkconfig.rb b/tool/mkconfig.rb index 038fbf6428..c0aced8686 100755 --- a/tool/mkconfig.rb +++ b/tool/mkconfig.rb @@ -333,8 +333,8 @@ print <<EOS # :nodoc: # call-seq: # - # RbConfig.fire_update!(key, val) -> string - # RbConfig.fire_update!(key, val, mkconf, conf) -> string + # RbConfig.fire_update!(key, val) -> array + # RbConfig.fire_update!(key, val, mkconf, conf) -> array # # updates +key+ in +mkconf+ with +val+, and all values depending on # the +key+ in +mkconf+. |