From 2d67a421996f50c74756273497ae2e5bb2c6f1c9 Mon Sep 17 00:00:00 2001 From: Kirk Byers Date: Thu, 14 Oct 2021 14:04:03 -0700 Subject: [PATCH] Correct configuration order preference error --- docs/configuration/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/index.rst b/docs/configuration/index.rst index 46f70bd70..551d8110f 100644 --- a/docs/configuration/index.rst +++ b/docs/configuration/index.rst @@ -1,7 +1,7 @@ Configuration ============= -The configuration is comprised of a set of sections and parameters for those sections. You can set the configuration programmatically using nornir by passing a dictionary of options for each section, by using a YAML file, by setting the corresponding environment variables or by a combination of the three. The order of preference from less to more preferred is "configuration file" -> "env variable" -> "code". +The configuration is comprised of a set of sections and parameters for those sections. You can set the configuration programmatically using nornir by passing a dictionary of options for each section, by using a YAML file, by setting the corresponding environment variables or by a combination of the three. The order of preference from less preferred to more preferred is "env variable" -> "configuration file" -> "code". An example using ``InitNornir`` would be::