summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/workbook/workbook.rb
diff options
context:
space:
mode:
authorZsolt Kozaroczy <[email protected]>2023-05-22 10:20:59 +0200
committerGitHub <[email protected]>2023-05-22 10:20:59 +0200
commitcae05b4a78c05e3dd753d6438ca15215f44066d8 (patch)
tree36af6be5cb6d4f59ee58c6972401e69532c9e497 /lib/axlsx/workbook/workbook.rb
parenta1f99fbd453345547c87e4fb6dcae2849a5f5ed2 (diff)
parentd0092daee2723c016baa04102c7fb60ea115a646 (diff)
downloadcaxlsx-cae05b4a78c05e3dd753d6438ca15215f44066d8.tar.gz
caxlsx-cae05b4a78c05e3dd753d6438ca15215f44066d8.zip
Merge pull request #235 from tagliala/chore/fix-yard-warnings
Fix YARD warnings
Diffstat (limited to 'lib/axlsx/workbook/workbook.rb')
-rw-r--r--lib/axlsx/workbook/workbook.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/workbook/workbook.rb b/lib/axlsx/workbook/workbook.rb
index da36e9a0..a0696cda 100644
--- a/lib/axlsx/workbook/workbook.rb
+++ b/lib/axlsx/workbook/workbook.rb
@@ -391,7 +391,7 @@ module Axlsx
end
# returns a range of cells in a worksheet
- # @param [String] cell_def The excel style reference defining the worksheet and cells. The range must specify the sheet to
+ # @param [String] cell_def The Excel style reference defining the worksheet and cells. The range must specify the sheet to
# retrieve the cells from. e.g. range('Sheet1!A1:B2') will return an array of four cells [A1, A2, B1, B2] while range('Sheet1!A1') will return a single Cell.
# @return [Cell, Array]
def [](cell_def)