summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2012-09-25 09:38:41 +0900
committerRandy Morgan <[email protected]>2012-09-25 09:38:41 +0900
commitbd6573b624190695ced572ea4d200aaf9c835193 (patch)
tree0395bb0d6eb04515ffc31728f0b26343efc58092
parent3178c786043537c0130af2955d29d01ec5fa4dd8 (diff)
downloadcaxlsx-bd6573b624190695ced572ea4d200aaf9c835193.tar.gz
caxlsx-bd6573b624190695ced572ea4d200aaf9c835193.zip
fix typo colums -> columns
-rw-r--r--lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb2
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