summaryrefslogtreecommitdiffhomepage
path: root/examples/example.rb
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2012-07-07 18:51:46 +0900
committerRandy Morgan <[email protected]>2012-07-07 18:51:46 +0900
commitfb4f5feb9d38ee49142a18eb6a1921fd3567964f (patch)
tree2a66b259e4807348a026e39284ebf78f57e205f2 /examples/example.rb
parent4c46ee219862e6a5badf47b6df008b1bea0088d5 (diff)
downloadcaxlsx-fb4f5feb9d38ee49142a18eb6a1921fd3567964f.tar.gz
caxlsx-fb4f5feb9d38ee49142a18eb6a1921fd3567964f.zip
fixing a type in worksheet serialization and adding in a few missing alias calls for the great snake_case move
Diffstat (limited to 'examples/example.rb')
-rwxr-xr-xexamples/example.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/example.rb b/examples/example.rb
index bd32e98b..00051af0 100755
--- a/examples/example.rb
+++ b/examples/example.rb
@@ -321,7 +321,7 @@ wb.add_worksheet(:name => "fit to page") do |sheet|
sheet.add_row ['this all goes on one page']
sheet.fit_to_page = true
end
-#```
+##```
##Hide Gridlines in worksheet
@@ -331,7 +331,7 @@ wb.add_worksheet(:name => "No Gridlines") do |sheet|
sheet.add_row ["This", "Sheet", "Hides", "Gridlines"]
sheet.show_gridlines = false
end
-#```
+##```
# Sheet Protection and excluding cells from locking.