ruby-changes:47357
From: kazu <ko1@a...>
Date: Thu, 3 Aug 2017 00:16:44 +0900 (JST)
Subject: [ruby-changes:47357] kazu:r59472 (trunk): Fix variable name in example of net/pop
kazu 2017-08-03 00:10:42 +0900 (Thu, 03 Aug 2017) New Revision: 59472 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=59472 Log: Fix variable name in example of net/pop [ci skip] Modified files: trunk/lib/net/pop.rb Index: lib/net/pop.rb =================================================================== --- lib/net/pop.rb (revision 59471) +++ lib/net/pop.rb (revision 59472) @@ -168,7 +168,7 @@ module Net https://github.com/ruby/ruby/blob/trunk/lib/net/pop.rb#L168 # require 'net/pop' # # # Use APOP authentication if $isapop == true - # pop = Net::POP3.APOP($is_apop).new('apop.example.com', 110) + # pop = Net::POP3.APOP($isapop).new('apop.example.com', 110) # pop.start('YourAccount', 'YourPassword') do |pop| # # Rest of the code is the same. # end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/