From a7d0056a53f4d5d7d7912c53ab35975c2dff1a1b Mon Sep 17 00:00:00 2001 From: Matt Willsher Date: Wed, 6 Nov 2013 17:01:37 +0000 Subject: [PATCH] Correct type hash_behavior -> hash_behaviour --- docsite/rst/intro_configuration.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docsite/rst/intro_configuration.rst b/docsite/rst/intro_configuration.rst index f41fe23c33a..e8f272b6b00 100644 --- a/docsite/rst/intro_configuration.rst +++ b/docsite/rst/intro_configuration.rst @@ -206,8 +206,8 @@ is very very conservative:: forks=5 -hash_behavior -============= +hash_behaviour +============== Ansible by default will override variables in specific precedence orders, as described in :doc:`playbooks_variables`. When a variable of higher precedence wins, it will replace the other value. @@ -216,7 +216,7 @@ Some users prefer that variables that are hashes (aka 'dictionaries' in Python t arrays. We generally recommend not using this setting unless you think you have an absolute need for it, and playbooks in the official examples repos do not use this setting:: - #hash_behavior=replace + #hash_behaviour=replace The valid values are either 'replace' (the default) or 'merge'.