summaryrefslogtreecommitdiff
path: root/CODING_GUIDELINES.md
diff options
context:
space:
mode:
authorJohn Barker <john@johnrbarker.com>2014-02-10 23:00:19 +0000
committerJohn Barker <john@johnrbarker.com>2014-02-10 23:00:19 +0000
commit1f4b91575b70206a0bfd5bdaf1841ef01d6380e2 (patch)
tree8dea6798201d4569733302b5191a38be3e616e58 /CODING_GUIDELINES.md
parentbbda98a3eee97507fc9184bd9a3410267fc5748f (diff)
downloadansible-1f4b91575b70206a0bfd5bdaf1841ef01d6380e2.tar.gz
Fix various typos in markdown documentation
Diffstat (limited to 'CODING_GUIDELINES.md')
-rw-r--r--CODING_GUIDELINES.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/CODING_GUIDELINES.md b/CODING_GUIDELINES.md
index d0edc7992f..6a3c497d48 100644
--- a/CODING_GUIDELINES.md
+++ b/CODING_GUIDELINES.md
@@ -6,7 +6,7 @@ Hi! Thanks for interest in contributing to Ansible.
Here are some guidelines for contributing code. The purpose of this document are to establish what we're looking for in code contributions, and to make sure
new contributions know some of the conventions that we've been using.
-We don't think much of this should be too strange to readers familar with contributing to Python projects, though it helps if we all get on the same page.
+We don't think much of this should be too strange to readers familiar with contributing to Python projects, though it helps if we all get on the same page.
Language
========
@@ -44,7 +44,7 @@ Shebang Lines
=============
* /usr/bin/scripts should start with '/usr/bin/env python'
- * module code should still use '/usr/bin/python' as this is replaced automatically by 'ansible_python_interpeter', see the FAQ in the docs for more info.
+ * module code should still use '/usr/bin/python' as this is replaced automatically by 'ansible_python_interpreter', see the FAQ in the docs for more info.
Comments
========
@@ -58,7 +58,7 @@ Comments
Classes
=======
- * With the exception of module code (where inline is better), it is deseriable to see classes in their own files.
+ * With the exception of module code (where inline is better), it is desirable to see classes in their own files.
* Classes should generally not cause side effects as soon as they are instantiated, move meaningful behavior to methods rather than constructors.
Functions and Methods
@@ -262,7 +262,7 @@ To test if something is a string, consider that it may be unicode.
if type(x) == str:
# yes
- if isintance(x, basestring):
+ if isinstance(x, basestring):
Cleverness
==========