From a3e35de69c4932bd8dc325ea62fadae4eaee8612 Mon Sep 17 00:00:00 2001 From: Lucy Cifferello <12953208+elvece@users.noreply.github.com> Date: Mon, 14 Mar 2022 13:54:08 -0600 Subject: [PATCH] fix config spec key --- site/source/developer-docs/specification/config-spec.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/source/developer-docs/specification/config-spec.rst b/site/source/developer-docs/specification/config-spec.rst index 1e1a87b..871ad11 100644 --- a/site/source/developer-docs/specification/config-spec.rst +++ b/site/source/developer-docs/specification/config-spec.rst @@ -358,7 +358,7 @@ Examples Pointer -------- -The pointer type *points* to a config value on another service installed on EmbassyOS (ie. package subtype) or to the EmbassyOS system (ie. system subtype). When pointing to another service, the ``index`` field indicates the path to the desired config variable. +The pointer type *points* to a config value on another service installed on EmbassyOS (ie. package subtype) or to the EmbassyOS system (ie. system subtype). When pointing to another service, the ``selector`` field indicates the path to the desired config variable. .. code-block:: :caption: ValueSpec Type @@ -370,7 +370,7 @@ The pointer type *points* to a config value on another service installed on Emba subtype: Enum< package | system> package-id: String (*always* kebab case) target: AppPointerSpecVariants | SystemPointerSpecVariants - index: Option (dependent on target being AppPointerSpecVariants) + selector: Option (dependent on target being AppPointerSpecVariants) AppPointerSpecVariants = TorAddress | TorKey | Config SystemPointerSpecVariants = HostIp @@ -387,7 +387,7 @@ Example subtype: package package-id: bitcoind target: config - index: "rpc.username" + selector: "rpc.username" .. _union: