diff options
| author | Randy Morgan (@morgan_randy) <[email protected]> | 2013-08-01 04:08:08 -0700 |
|---|---|---|
| committer | Randy Morgan (@morgan_randy) <[email protected]> | 2013-08-01 04:08:08 -0700 |
| commit | 2c3a0b821abaef509fefee0f6e096073180c3337 (patch) | |
| tree | c636a25eb254e7a0b079f0152b8dce9bf5cd6e55 /lib | |
| parent | 7fb6629b6f1e56b3e012613ec8cfcda8628c0ca5 (diff) | |
| parent | 810e73a86aa4b90b30e4cd3bfbe9668b68063133 (diff) | |
| download | caxlsx-2c3a0b821abaef509fefee0f6e096073180c3337.tar.gz caxlsx-2c3a0b821abaef509fefee0f6e096073180c3337.zip | |
Merge pull request #223 from totallymike/master
Fix a little typo.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/axlsx/stylesheet/styles.rb | 2 | ||||
| -rw-r--r-- | lib/axlsx/workbook/worksheet/row.rb | 2 |
2 files changed, 2 insertions, 2 deletions
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] 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 << '</row>' 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) |
