diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-05-26 16:44:57 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-05-26 16:44:57 -0400 |
commit | 81d9c0f86eae6feddec10620e11b1eda3ffe9b9b (patch) | |
tree | a8d1da89dd7a1686b7b358d5a25ea9efbf99c77a /docs/style_guide.adoc | |
parent | 5cf4c381c48e3286b1c7417d9873e39ba93cd1a0 (diff) | |
parent | 1e1de9761184eb0732d4880bfb4188097530249f (diff) | |
download | openshift-81d9c0f86eae6feddec10620e11b1eda3ffe9b9b.tar.gz openshift-81d9c0f86eae6feddec10620e11b1eda3ffe9b9b.tar.bz2 openshift-81d9c0f86eae6feddec10620e11b1eda3ffe9b9b.tar.xz openshift-81d9c0f86eae6feddec10620e11b1eda3ffe9b9b.zip |
Merge pull request #250 from twiest/pr
removed references to 'we'
Diffstat (limited to 'docs/style_guide.adoc')
-rw-r--r-- | docs/style_guide.adoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/style_guide.adoc b/docs/style_guide.adoc index 714b56c70..b4c99e1d9 100644 --- a/docs/style_guide.adoc +++ b/docs/style_guide.adoc @@ -13,7 +13,7 @@ This style guide complies with https://www.ietf.org/rfc/rfc2119.txt[RFC2119]. == Ansible Variable Naming === Global Variables -We define Ansible global variables as any variables outside of ansible roles. Examples include playbook variables, variables passed in on the cli, etc. +Ansible global variables are defined as any variables outside of ansible roles. Examples include playbook variables, variables passed in on the cli, etc. ''' [cols="2v,v"] @@ -30,7 +30,7 @@ g_environment: someval ---- ==== Role Variables -We define Ansible role variables as variables contained in (or passed into) a role. +Ansible role variables are defined as variables contained in (or passed into) a role. ''' [cols="2v,v"] @@ -104,4 +104,4 @@ Even though both roles have the same prefix (mur), and even though both roles ha This would only be a problem if my_uber_role depended on made_up_role, or vice versa. Or if either of these two roles included things from the other. -We think this is enough of a corner case that it is unlikely to happen. If it does, we will address it on a case by case basis. +This is enough of a corner case that it is unlikely to happen. If it does, it will be addressed on a case by case basis. |