From 2a5c58faffb690831911f3799e8c097c6fdef793 Mon Sep 17 00:00:00 2001 From: Stefan Date: Mon, 23 May 2022 12:56:27 +0200 Subject: Fix default values in docs --- lib/axlsx/util/storage.rb | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/axlsx/util/storage.rb b/lib/axlsx/util/storage.rb index 40cd4a45..6c16bdcf 100644 --- a/lib/axlsx/util/storage.rb +++ b/lib/axlsx/util/storage.rb @@ -122,15 +122,15 @@ module Axlsx # Creates a new storage object. # @param [String] name the name of the storage - # @option options [Integer] color @default black - # @option options [Integer] type @default storage - # @option options [String] data - # @option options [Integer] left @default -1 - # @option options [Integer] right @default -1 - # @option options [Integer] child @default -1 - # @option options [Integer] created @default 0 - # @option options [Integer] modified @default 0 - # @option options [Integer] sector @default 0 + # @option options [Integer] color (black) + # @option options [Integer] type (storage) + # @option options [String] data + # @option options [Integer] left (-1) + # @option options [Integer] right (-1) + # @option options [Integer] child (-1) + # @option options [Integer] created (0) + # @option options [Integer] modified (0) + # @option options [Integer] sector (0) def initialize(name, options= {}) @left = @right = @child = -1 @sector = @size = @created = @modified = 0 -- cgit v1.2.3