From 9322809b3ae38fb7f2158d1401ac93cf10c68c5d Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Wed, 2 Feb 2022 21:58:27 +0100 Subject: [PATCH] Fix return value documentation to use a valid value for 'type'. (#4142) --- plugins/modules/system/xfconf.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/plugins/modules/system/xfconf.py b/plugins/modules/system/xfconf.py index 4e645df5c2..ded8e7b9e2 100644 --- a/plugins/modules/system/xfconf.py +++ b/plugins/modules/system/xfconf.py @@ -107,23 +107,26 @@ RETURN = ''' - The type of the value that was changed (C(none) for C(get) and C(reset) state). Either a single string value or a list of strings for array types. + - This is a string or a list of strings. returned: success - type: string or list of strings + type: any sample: '"int" or ["str", "str", "str"]' value: description: - The value of the preference key after executing the module. Either a single string value or a list of strings for array types. + - This is a string or a list of strings. returned: success - type: string or list of strings + type: any sample: '"192" or ["orange", "yellow", "violet"]' previous_value: description: - The value of the preference key before executing the module (C(none) for C(get) state). Either a single string value or a list of strings for array types. + - This is a string or a list of strings. returned: success - type: string or list of strings + type: any sample: '"96" or ["red", "blue", "green"]' '''