Merge pull request #398 from fabriceb/patch-1

Typo in comments
This commit is contained in:
Brian Coca 2014-11-28 09:07:25 -05:00
commit bb3663e40f

View file

@ -333,7 +333,7 @@ def enforce_state(module, params):
state = params.get("state", "present")
key_options = params.get("key_options", None)
# extract indivial keys into an array, skipping blank lines and comments
# extract individual keys into an array, skipping blank lines and comments
key = [s for s in key.splitlines() if s and not s.startswith('#')]