summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx.rb
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-05-21 14:49:06 +0200
committerGeremia Taglialatela <[email protected]>2023-05-21 14:49:06 +0200
commitd0092daee2723c016baa04102c7fb60ea115a646 (patch)
treee37bdae6a4be082fd3bea08fef6006fe60615f2a /lib/axlsx.rb
parented25dade53fd5e4d74d9d171fcc62e3fc2cd68a7 (diff)
downloadcaxlsx-d0092daee2723c016baa04102c7fb60ea115a646.tar.gz
caxlsx-d0092daee2723c016baa04102c7fb60ea115a646.zip
Improve comments
- Use https where possible - Capitalize Excel
Diffstat (limited to 'lib/axlsx.rb')
-rw-r--r--lib/axlsx.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/axlsx.rb b/lib/axlsx.rb
index cb7beb8c..58096e7c 100644
--- a/lib/axlsx.rb
+++ b/lib/axlsx.rb
@@ -143,7 +143,7 @@ module Axlsx
col_ref(c_index) + row_ref(r_index)
end
- # Creates an array of individual cell references based on an excel reference range.
+ # Creates an array of individual cell references based on an Excel reference range.
# @param [String] range A cell range, for example A1:D5
# @return [Array]
def self.range_to_a(range)
@@ -206,7 +206,7 @@ module Axlsx
# Instructs the serializer to not try to escape cell value input.
# This will give you a huge speed bonus, but if you content has <, > or other xml character data
- # the workbook will be invalid and excel will complain.
+ # the workbook will be invalid and Excel will complain.
def self.trust_input
@trust_input ||= false
end