From ab6df461cecabff3b668306f4a7df142264d3091 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Mon, 4 Jun 2012 10:52:14 +0900 Subject: ooops! start_with needs a ? after it. --- lib/axlsx/workbook/worksheet/cell.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/axlsx/workbook/worksheet/cell.rb b/lib/axlsx/workbook/worksheet/cell.rb index e3e153e0..4453529b 100644 --- a/lib/axlsx/workbook/worksheet/cell.rb +++ b/lib/axlsx/workbook/worksheet/cell.rb @@ -318,7 +318,7 @@ module Axlsx end def is_formula? - @type == :string && @value.start_with('=') + @type == :string && @value.start_with?('=') end private -- cgit v1.2.3