From 6898d4857066bf03c129c5b151e392d72160e127 Mon Sep 17 00:00:00 2001 From: Olivier Delalleau <507137+odelalleau@users.noreply.github.com> Date: Wed, 24 Mar 2021 22:19:38 -0400 Subject: [PATCH] Clarify comments in doc --- docs/source/usage.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/usage.rst b/docs/source/usage.rst index f33bf6213..b2a68ab61 100644 --- a/docs/source/usage.rst +++ b/docs/source/usage.rst @@ -477,9 +477,9 @@ If a string is given as input, ``OmegaConf.select()`` is used to access the corr ... "node012": "10.0.0.3", ... "node075": "10.0.1.8", ... }, - ... # Explicit interpolation `${machines}` as input. + ... # Obtaining keys with explicit interpolation as input. ... "nodes": "${oc.dict.keys:${machines}}", - ... # Config node name `machines` as input. + ... # Obtaining values with node name as input. ... "ips": "${oc.dict.values:machines}", ... } ... )