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

* lib/webrick/compat.rb, lib/xmlrpc/datetime.rb: [DOC] fix typo by @vipulnsward [fix GH-464]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44024 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2013-12-06 02:10:11 +00:00
parent ea1180ef80
commit 86d6d4d57c
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
# $IPR: compat.rb,v 1.6 2002/10/01 17:16:32 gotoyuzo Exp $ # $IPR: compat.rb,v 1.6 2002/10/01 17:16:32 gotoyuzo Exp $
## ##
# System call error module used by webrick for cross platform compatability. # System call error module used by webrick for cross platform compatibility.
# #
# EPROTO:: protocol error # EPROTO:: protocol error
# ECONNRESET:: remote host reset the connection request # ECONNRESET:: remote host reset the connection request

View file

@ -9,7 +9,7 @@ require "date"
module XMLRPC # :nodoc: module XMLRPC # :nodoc:
# This class is important to handle XMLRPC +dateTime.iso8601+ values, # This class is important to handle XMLRPC +dateTime.iso8601+ values,
# correcly, because normal UNIX-dates, ie: Date, only handle dates # correctly, because normal UNIX-dates, ie: Date, only handle dates
# from year 1970 on, and ruby's native Time class handles dates without the # from year 1970 on, and ruby's native Time class handles dates without the
# time component. # time component.
# #