From b93aea84d04288f45c3fd4ed5d4fa9247b7f2f1e Mon Sep 17 00:00:00 2001 From: kazu Date: Wed, 2 Aug 2017 15:10:40 +0000 Subject: Fix net/pop code example syntax error ref https://github.com/rurema/doctree/pull/455 [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59471 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/pop.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/net/pop.rb') diff --git a/lib/net/pop.rb b/lib/net/pop.rb index 4e2bcb4015..ed4293b607 100644 --- a/lib/net/pop.rb +++ b/lib/net/pop.rb @@ -169,7 +169,7 @@ module Net # # # Use APOP authentication if $isapop == true # pop = Net::POP3.APOP($is_apop).new('apop.example.com', 110) - # pop.start(YourAccount', 'YourPassword') do |pop| + # pop.start('YourAccount', 'YourPassword') do |pop| # # Rest of the code is the same. # end # @@ -771,7 +771,7 @@ module Net # === Example without block # # POP3.start('pop.example.com', 110, - # 'YourAccount, 'YourPassword') do |pop| + # 'YourAccount', 'YourPassword') do |pop| # n = 1 # pop.mails.each do |popmail| # File.open("inbox/#{n}", 'w') do |f| @@ -785,7 +785,7 @@ module Net # === Example with block # # POP3.start('pop.example.com', 110, - # 'YourAccount, 'YourPassword') do |pop| + # 'YourAccount', 'YourPassword') do |pop| # n = 1 # pop.mails.each do |popmail| # File.open("inbox/#{n}", 'w') do |f| @@ -844,7 +844,7 @@ module Net # === Example # # POP3.start('pop.example.com', 110, - # 'YourAccount, 'YourPassword') do |pop| + # 'YourAccount', 'YourPassword') do |pop| # n = 1 # pop.mails.each do |popmail| # File.open("inbox/#{n}", 'w') do |f| -- cgit v1.2.3