From 5eaff9477c4d088617ecbf0ff2577279f3ed5f93 Mon Sep 17 00:00:00 2001 From: Michael Westbom Date: Tue, 30 Jul 2013 21:54:03 -0400 Subject: Update row.rb Fixed a little typo. --- lib/axlsx/workbook/worksheet/row.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/axlsx/workbook/worksheet/row.rb b/lib/axlsx/workbook/worksheet/row.rb index 43c85b59..5e335ca5 100644 --- a/lib/axlsx/workbook/worksheet/row.rb +++ b/lib/axlsx/workbook/worksheet/row.rb @@ -97,7 +97,7 @@ module Axlsx str << '' end - # Adds a singel sell to the row based on the data provided and updates the worksheet's autofit data. + # Adds a single sell to the row based on the data provided and updates the worksheet's autofit data. # @return [Cell] def add_cell(value="", options={}) c = Cell.new(self, value, options) -- cgit v1.2.3 From 810e73a86aa4b90b30e4cd3bfbe9668b68063133 Mon Sep 17 00:00:00 2001 From: Michael Westbom Date: Wed, 31 Jul 2013 10:20:06 -0400 Subject: Fix minor typo --- lib/axlsx/stylesheet/styles.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/axlsx/stylesheet/styles.rb b/lib/axlsx/stylesheet/styles.rb index 44ccb752..067ed1fa 100644 --- a/lib/axlsx/stylesheet/styles.rb +++ b/lib/axlsx/stylesheet/styles.rb @@ -183,7 +183,7 @@ module Axlsx # :border=>Axlsx::STYLE_THIN_BORDER) # # # build your rows - # ws.add_row ["Genreated At:", Time.now], :styles=>[nil, date_time] + # ws.add_row ["Generated At:", Time.now], :styles=>[nil, date_time] # ws.add_row ["Previous Year Quarterly Profits (JPY)"], :style=>title # ws.add_row ["Quarter", "Profit", "% of Total"], :style=>title # ws.add_row ["Q1", 4000, 40], :style=>[title, currency, percent] -- cgit v1.2.3