Skip to content

Commit 2c297fa

Browse files
blackwinterfsteeg
andauthored
Refer to add_* Fix functions to create intermediate structures. (#704)
Co-authored-by: Fabian Steeg <steeg@hbz-nrw.de>
1 parent c3b404b commit 2c297fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ retain("<sourceField_1>"[, ...])
642642
643643
##### `set_array`
644644
645-
Creates a new array (with optional values), provided that the intermediate structures (i.e. parent fields) exist.
645+
Creates a new array (with optional values), provided that the intermediate structures (i.e. parent fields) exist. To create any missing intermediate structures, use [`add_array`](#add_array) instead.
646646
647647
```perl
648648
set_array("<targetFieldName>")
@@ -655,7 +655,7 @@ set_array("<targetFieldName>", "<value_1>"[, ...])
655655
656656
##### `set_field`
657657
658-
Creates a field with a defined value, provided that the intermediate structures (i.e. parent fields) exist.
658+
Creates a field with a defined value, provided that the intermediate structures (i.e. parent fields) exist. To create any missing intermediate structures, use [`add_field`](#add_field) instead.
659659
660660
```perl
661661
set_field("<targetFieldName>", "<fieldValue>")
@@ -667,7 +667,7 @@ set_field("<targetFieldName>", "<fieldValue>")
667667
668668
##### `set_hash`
669669
670-
Creates a new hash (with optional values), provided that the intermediate structures (i.e. parent fields) exist.
670+
Creates a new hash (with optional values), provided that the intermediate structures (i.e. parent fields) exist. To create any missing intermediate structures, use [`add_hash`](#add_hash) instead.
671671
672672
```perl
673673
set_hash("<targetFieldName>")

0 commit comments

Comments
 (0)