From 2eb22d55366076f24505826bc048dfee323888cf Mon Sep 17 00:00:00 2001 From: Thomas Quinot Date: Sun, 10 Jan 2016 10:27:50 +0100 Subject: [PATCH] Fix minor typo in comment --- lib/ansible/playbook/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/playbook/base.py b/lib/ansible/playbook/base.py index 4ca8e4e463a..7725b5c3c9b 100644 --- a/lib/ansible/playbook/base.py +++ b/lib/ansible/playbook/base.py @@ -153,7 +153,7 @@ class Base: setattr(Base, name, property(getter, setter, deleter)) # Place the value into the instance so that the property can - # process and hold that value/ + # process and hold that value. setattr(self, name, value.default) def preprocess_data(self, ds):