From 43309c0f5d0d0fc800e19afd11017279602a5fb7 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Sun, 6 Mar 2016 11:24:02 +0100 Subject: [PATCH] Fix various mispellings --- docsite/rst/porting_guide_2.0.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docsite/rst/porting_guide_2.0.rst b/docsite/rst/porting_guide_2.0.rst index 44a920f984c..a112d8ebcbf 100644 --- a/docsite/rst/porting_guide_2.0.rst +++ b/docsite/rst/porting_guide_2.0.rst @@ -186,14 +186,14 @@ Here are some corner cases encountered when updating, these are mostly caused by The `port` variable is reserved as a play/task directive for overriding the connection port, in previous versions this got conflated with a variable named `port` and was usable later in the play, this created issues if a host tried to reconnect or was using a non caching connection. Now it will be correctly identified as a directive and the `port` variable - will appear as undefined, this now forces the use of non conflicting names and removes ambiguity when adding settings and varaibles to a role invocation.. + will appear as undefined, this now forces the use of non conflicting names and removes ambiguity when adding settings and variables to a role invocation. * Bare operations on `with_`:: with_items: var1 + var2 - An issue with the 'bare variable' features, which was supposed only tempate a single variable without the need of braces ({{ )}}, would in some versions of Ansible template full expressions. - Now you need to use proper templating and braces for all expressions everywhere except condtionals (`when`):: + An issue with the 'bare variable' features, which was supposed only template a single variable without the need of braces ({{ )}}, would in some versions of Ansible template full expressions. + Now you need to use proper templating and braces for all expressions everywhere except conditionals (`when`):: with_items: "{{var1 + var2}}"