diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2022-04-27 18:37:21 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2022-04-28 13:44:27 +0200 |
commit | b44717252ee0a9c33c7c6d51f93815f000f85058 (patch) | |
tree | 395d817192d90386e7d6685d1344c1b3aa9a7bfa | |
parent | 49d0459e688fd35571b12fd23150dea04471358b (diff) | |
download | justbuild-b44717252ee0a9c33c7c6d51f93815f000f85058.tar.gz |
rules: Fix field_artifacts/field_runfiles expressions' docs
-rw-r--r-- | rules/EXPRESSIONS | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/rules/EXPRESSIONS b/rules/EXPRESSIONS index 3251f925..8ead00f1 100644 --- a/rules/EXPRESSIONS +++ b/rules/EXPRESSIONS @@ -2,8 +2,8 @@ { "doc": ["Query list of artifacts from target_field's targets"] , "vars": ["fieldname", "transition"] , "vars_doc": - { "fieldname": "The name of the target_field to query." - , "transition": "The optional configuration transition for the targets." + { "fieldname": ["The name of the target_field to query."] + , "transition": ["The optional configuration transition for the targets."] } , "expression": { "type": "foreach" @@ -21,8 +21,8 @@ { "doc": ["Query and merge artifacts from target_field's targets"] , "vars": ["fieldname", "transition"] , "vars_doc": - { "fieldname": "The name of the target_field to query." - , "transition": "The optional configuration transition for the targets." + { "fieldname": ["The name of the target_field to query."] + , "transition": ["The optional configuration transition for the targets."] } , "imports": {"artifacts_list": "field_artifacts_list"} , "expression": @@ -34,8 +34,8 @@ { "doc": ["Query list of runfiles from target_field's targets"] , "vars": ["fieldname", "transition"] , "vars_doc": - { "fieldname": "The name of the target_field to query." - , "transition": "The optional configuration transition for the targets." + { "fieldname": ["The name of the target_field to query."] + , "transition": ["The optional configuration transition for the targets."] } , "expression": { "type": "foreach" @@ -53,8 +53,8 @@ { "doc": ["Query and merge runfiles from target_field's targets"] , "vars": ["fieldname", "transition"] , "vars_doc": - { "fieldname": "The name of the target_field to query." - , "transition": "The optional configuration transition for the targets." + { "fieldname": ["The name of the target_field to query."] + , "transition": ["The optional configuration transition for the targets."] } , "imports": {"runfiles_list": "field_runfiles_list"} , "expression": |