From 5846bda999bc27d4279d991ca2956bfca7601b2b Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Sun, 27 Dec 2015 14:36:08 +0900 Subject: [PATCH] Method name typo * ext/tk/lib/tk/canvas.rb: kinad_of? => kind_of? --- ext/tk/lib/tk/canvas.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/tk/lib/tk/canvas.rb b/ext/tk/lib/tk/canvas.rb index d707733..f2d798c 100644 --- a/ext/tk/lib/tk/canvas.rb +++ b/ext/tk/lib/tk/canvas.rb @@ -566,7 +566,7 @@ def raise(tag, above=nil) def rchars(tag, first, last, str_or_coords) # Tcl/Tk 8.6 or later - str_or_coords = str_or_coords.flatten if str_or_coords.kinad_of? Array + str_or_coords = str_or_coords.flatten if str_or_coords.kind_of? Array tk_send_without_enc('rchars', tagid(tag), first, last, str_or_coords) self end -- 2.6.4