diff options
| author | Randy Morgan <[email protected]> | 2012-03-04 08:15:26 +0900 |
|---|---|---|
| committer | Sean Duckett <[email protected]> | 2012-03-07 14:45:03 -0600 |
| commit | 1d7d0415de8a2888a2eeaf901b4bf5c49a774b87 (patch) | |
| tree | 972501d373ab9b09b975fa1db0bd6756705b4996 | |
| parent | fe900f7c2655f6a3ec0ef2afe9ae202679daecb2 (diff) | |
| download | caxlsx-1d7d0415de8a2888a2eeaf901b4bf5c49a774b87.tar.gz caxlsx-1d7d0415de8a2888a2eeaf901b4bf5c49a774b87.zip | |
fix typos in docs
| -rw-r--r-- | lib/axlsx/rels/relationship.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/axlsx/rels/relationship.rb b/lib/axlsx/rels/relationship.rb index 23e6428a..3596d808 100644 --- a/lib/axlsx/rels/relationship.rb +++ b/lib/axlsx/rels/relationship.rb @@ -1,7 +1,7 @@ # encoding: UTF-8 module Axlsx # A relationship defines a reference between package parts. - # @note Packages automatcially manage relationships. + # @note Packages automatically manage relationships. class Relationship # The location of the relationship target @@ -32,7 +32,7 @@ module Axlsx # creates a new relationship # @param [String] Type The type of the relationship # @param [String] Target The target for the relationship - # @option [Symbol] target_mode only accepts :external. + # @option [Symbol] target_mode only accepts :external. def initialize(type, target, options={}) self.Target=target self.Type=type @@ -47,7 +47,7 @@ module Axlsx # @see TargetMode def TargetMode=(v) RestrictionValidator.validate 'Relationship.TargetMode', [:External, :Internal], v; @TargetMode = v; end - # Serializes the relationship + # Serializes the relationship # @param [Nokogiri::XML::Builder] xml The document builder instance this objects xml will be added to. # @param [String] rId the reference id of the object. # @return [String] |
