ruby-changes:31970
From: a_matsuda <ko1@a...>
Date: Sat, 7 Dec 2013 19:27:32 +0900 (JST)
Subject: [ruby-changes:31970] a_matsuda:r44049 (trunk): * ext/tk/lib/tk/canvas.rb: [DOC] Fix typo (s/paramter/parameter/)
a_matsuda 2013-12-07 19:27:27 +0900 (Sat, 07 Dec 2013) New Revision: 44049 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=44049 Log: * 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] Modified files: trunk/ext/tk/lib/tk/canvas.rb trunk/ext/tk/lib/tk/text.rb trunk/ext/tk/lib/tkextlib/blt/component.rb trunk/ext/tk/lib/tkextlib/blt/tree.rb trunk/ext/tk/lib/tkextlib/blt/treeview.rb trunk/ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb trunk/lib/xmlrpc/server.rb Index: lib/xmlrpc/server.rb =================================================================== --- lib/xmlrpc/server.rb (revision 44048) +++ lib/xmlrpc/server.rb (revision 44049) @@ -50,7 +50,7 @@ class BasicServer https://github.com/ruby/ruby/blob/trunk/lib/xmlrpc/server.rb#L50 # 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=".") Index: ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb =================================================================== --- ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb (revision 44048) +++ ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb (revision 44049) @@ -64,7 +64,7 @@ class Tk::Iwidgets::Scrolledcanvas https://github.com/ruby/ruby/blob/trunk/ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb#L64 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 Index: ext/tk/lib/tkextlib/blt/treeview.rb =================================================================== --- ext/tk/lib/tkextlib/blt/treeview.rb (revision 44048) +++ ext/tk/lib/tkextlib/blt/treeview.rb (revision 44049) @@ -339,7 +339,7 @@ class Tk::BLT::Treeview https://github.com/ruby/ruby/blob/trunk/ext/tk/lib/tkextlib/blt/treeview.rb#L339 || 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 Index: ext/tk/lib/tkextlib/blt/tree.rb =================================================================== --- ext/tk/lib/tkextlib/blt/tree.rb (revision 44048) +++ ext/tk/lib/tkextlib/blt/tree.rb (revision 44049) @@ -670,7 +670,7 @@ module Tk::BLT https://github.com/ruby/ruby/blob/trunk/ext/tk/lib/tkextlib/blt/tree.rb#L670 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 Index: ext/tk/lib/tkextlib/blt/component.rb =================================================================== --- ext/tk/lib/tkextlib/blt/component.rb (revision 44048) +++ ext/tk/lib/tkextlib/blt/component.rb (revision 44049) @@ -1420,7 +1420,7 @@ module Tk::BLT https://github.com/ruby/ruby/blob/trunk/ext/tk/lib/tkextlib/blt/component.rb#L1420 tag.kind_of?(Marker) tag.id else - tag # maybe an Array of configure paramters + tag # maybe an Array of configure parameters end end Index: ext/tk/lib/tk/text.rb =================================================================== --- ext/tk/lib/tk/text.rb (revision 44048) +++ ext/tk/lib/tk/text.rb (revision 44049) @@ -352,7 +352,7 @@ class Tk::Text<TkTextWin https://github.com/ruby/ruby/blob/trunk/ext/tk/lib/tk/text.rb#L352 || 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 Index: ext/tk/lib/tk/canvas.rb =================================================================== --- ext/tk/lib/tk/canvas.rb (revision 44048) +++ ext/tk/lib/tk/canvas.rb (revision 44049) @@ -77,7 +77,7 @@ class Tk::Canvas<TkWindow https://github.com/ruby/ruby/blob/trunk/ext/tk/lib/tk/canvas.rb#L77 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 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/