mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/tk/lib/tk/canvas.rb: [DOC] Fix typo (s/paramter/parameter/)
* ext/tk/lib/tk/text.rb: Ditto. * ext/tk/lib/tkextlib/blt/component.rb: Ditto. * ext/tk/lib/tkextlib/blt/tree.rb: Ditto. * ext/tk/lib/tkextlib/blt/treeview.rb: Ditto. * ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb: Ditto. * lib/xmlrpc/server.rb: Ditto. [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44049 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
218755f306
commit
7a9f701692
7 changed files with 7 additions and 7 deletions
|
@ -77,7 +77,7 @@ class Tk::Canvas<TkWindow
|
|||
if tag.kind_of?(TkcItem) || tag.kind_of?(TkcTag)
|
||||
tag.id
|
||||
else
|
||||
tag # maybe an Array of configure paramters
|
||||
tag # maybe an Array of configure parameters
|
||||
end
|
||||
end
|
||||
private :tagid
|
||||
|
|
|
@ -352,7 +352,7 @@ class Tk::Text<TkTextWin
|
|||
|| tag.kind_of?(TkTextWindow)
|
||||
tag.id
|
||||
else
|
||||
tag # maybe an Array of configure paramters
|
||||
tag # maybe an Array of configure parameters
|
||||
end
|
||||
end
|
||||
private :tagid
|
||||
|
|
|
@ -1420,7 +1420,7 @@ module Tk::BLT
|
|||
tag.kind_of?(Marker)
|
||||
tag.id
|
||||
else
|
||||
tag # maybe an Array of configure paramters
|
||||
tag # maybe an Array of configure parameters
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -670,7 +670,7 @@ module Tk::BLT
|
|||
tag.kind_of?(Tk::BLT::Tree::Trace)
|
||||
tag.id
|
||||
else
|
||||
tag # maybe an Array of configure paramters
|
||||
tag # maybe an Array of configure parameters
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -339,7 +339,7 @@ class Tk::BLT::Treeview
|
|||
|| tag.kind_of?(Tk::BLT::Treeview::Tag)
|
||||
tag.id
|
||||
else
|
||||
tag # maybe an Array of configure paramters
|
||||
tag # maybe an Array of configure parameters
|
||||
end
|
||||
end
|
||||
private :tagid
|
||||
|
|
|
@ -64,7 +64,7 @@ class Tk::Iwidgets::Scrolledcanvas
|
|||
elsif tag.kind_of?(Tk::Itk::Component)
|
||||
tag.name
|
||||
else
|
||||
tag # maybe an Array of configure paramters
|
||||
tag # maybe an Array of configure parameters
|
||||
end
|
||||
end
|
||||
private :tagid
|
||||
|
|
|
@ -50,7 +50,7 @@ class BasicServer
|
|||
# method should be called from a subclass indirectly by a +super+ call
|
||||
# in the initialize method.
|
||||
#
|
||||
# The paramter +class_delim+ is used by add_handler, see
|
||||
# The parameter +class_delim+ is used by add_handler, see
|
||||
# XMLRPC::BasicServer#add_handler, when an object is added as a handler, to
|
||||
# delimit the object-prefix and the method-name.
|
||||
def initialize(class_delim=".")
|
||||
|
|
Loading…
Reference in a new issue