From 5717f4f1610b627990a36f091c8366aca876f5db Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 9 Jun 2017 23:48:34 -0400 Subject: [PATCH] updated cache descriptions --- lib/ansible/plugins/cache/jsonfile.py | 4 ++-- lib/ansible/plugins/cache/pickle.py | 4 ++-- lib/ansible/plugins/cache/yaml.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/ansible/plugins/cache/jsonfile.py b/lib/ansible/plugins/cache/jsonfile.py index 8cfdcc1c18..d1131cdc79 100644 --- a/lib/ansible/plugins/cache/jsonfile.py +++ b/lib/ansible/plugins/cache/jsonfile.py @@ -17,9 +17,9 @@ ''' DOCUMENTATION: cache: jsonfile - short_description: File backed, JSON formated. + short_description: JSON formatted files. description: - - File backed cache that uses JSON as a format, the files are per host. + - This cache uses JSON formatted, per host, files saved to the filesystem. version_added: "1.9" author: Brian Coca (@bcoca) ''' diff --git a/lib/ansible/plugins/cache/pickle.py b/lib/ansible/plugins/cache/pickle.py index 1c36ee9182..1a3163ef4e 100644 --- a/lib/ansible/plugins/cache/pickle.py +++ b/lib/ansible/plugins/cache/pickle.py @@ -17,9 +17,9 @@ ''' DOCUMENTATION: cache: yaml - short_description: File backed, using Python's pickle. + short_description: Pickle formatted files. description: - - File backed cache that uses Python's pickle serialization as a format, the files are per host. + - This cache uses Python's pickle serialization format, in per host files, saved to the filesystem. version_added: "2.3" author: Brian Coca (@bcoca) ''' diff --git a/lib/ansible/plugins/cache/yaml.py b/lib/ansible/plugins/cache/yaml.py index 7a6719172b..aecf88894a 100644 --- a/lib/ansible/plugins/cache/yaml.py +++ b/lib/ansible/plugins/cache/yaml.py @@ -17,9 +17,9 @@ ''' DOCUMENTATION: cache: yaml - short_description: File backed, YAML formated. + short_description: YAML formatted files. description: - - File backed cache that uses YAML as a format, the files are per host. + - This cache uses YAML formatted, per host, files saved to the filesystem. version_added: "2.3" author: Brian Coca (@bcoca) '''