From 520030139e579d525ee70dd920c824e486e229c7 Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Sun, 27 Dec 2015 14:38:05 +0900 Subject: [PATCH] Constant name typo * ext/tk/lib/tkextlib/blt/component.rb: LegenedID_TBL => LegendID_TBL --- ext/tk/lib/tkextlib/blt/component.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/tk/lib/tkextlib/blt/component.rb b/ext/tk/lib/tkextlib/blt/component.rb index a6b6f13..0ca2d77 100644 --- a/ext/tk/lib/tkextlib/blt/component.rb +++ b/ext/tk/lib/tkextlib/blt/component.rb @@ -923,13 +923,13 @@ class Legend < TkObject def self.new(chart, keys={}) obj = nil - LegenedID_TBL.mutex.synchronize{ - unless (obj = LegenedID_TBL[chart.path]) + LegendID_TBL.mutex.synchronize{ + unless (obj = LegendID_TBL[chart.path]) (obj = self.allocate).instance_eval{ @parent = @chart = chart @cpath = @chart.path @path = @id = 'crosshairs' - Legend::LegenedID_TBL[@cpath] = self + Legend::LegendID_TBL[@cpath] = self } end } -- 2.6.4