diff options
| author | Randy Morgan <[email protected]> | 2012-09-25 09:38:41 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-09-25 09:38:41 +0900 |
| commit | bd6573b624190695ced572ea4d200aaf9c835193 (patch) | |
| tree | 0395bb0d6eb04515ffc31728f0b26343efc58092 | |
| parent | 3178c786043537c0130af2955d29d01ec5fa4dd8 (diff) | |
| download | caxlsx-bd6573b624190695ced572ea4d200aaf9c835193.tar.gz caxlsx-bd6573b624190695ced572ea4d200aaf9c835193.zip | |
fix typo colums -> columns
| -rw-r--r-- | lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb b/lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb index c2b31156..4cf98ad7 100644 --- a/lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb +++ b/lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb @@ -52,7 +52,7 @@ module Axlsx def to_xml_string(str='') return unless range str << "<autoFilter ref='#{range}'>" - colums.each { |filter_column| filter_column.to_xml_string(str) } + columns.each { |filter_column| filter_column.to_xml_string(str) } str << "</autoFilter>" end |
