summaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2012-10-18 14:39:10 +0900
committerRandy Morgan <[email protected]>2012-10-18 14:39:10 +0900
commitdfd44cc1d6008a58f78b5e01452b1da69137389f (patch)
treeb6f2069070ba1b8b1414f01f7d85d5ee92eb64a6 /lib
parent33c55361509514cdd8fca78417247f38052c0a25 (diff)
downloadcaxlsx-dfd44cc1d6008a58f78b5e01452b1da69137389f.tar.gz
caxlsx-dfd44cc1d6008a58f78b5e01452b1da69137389f.zip
removed unneeded quotation for single word symbol
Diffstat (limited to 'lib')
-rw-r--r--lib/axlsx/workbook/worksheet/worksheet_hyperlink.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/workbook/worksheet/worksheet_hyperlink.rb b/lib/axlsx/workbook/worksheet/worksheet_hyperlink.rb
index 830698cc..3ea89c14 100644
--- a/lib/axlsx/workbook/worksheet/worksheet_hyperlink.rb
+++ b/lib/axlsx/workbook/worksheet/worksheet_hyperlink.rb
@@ -73,7 +73,7 @@ module Axlsx
# r:id should only be specified for external targets.
# @return [Hash]
def location_or_id
- @target == :external ? { :"r:id" => id } : { :"location" => location }
+ @target == :external ? { :"r:id" => id } : { :location => location }
end
end
end