From b08b1cf2f34e5af338ccc4afe696148995e4ba3a Mon Sep 17 00:00:00 2001 From: "jhawkesworth@users.noreply.github.com" Date: Fri, 15 Apr 2016 06:51:16 +0100 Subject: [PATCH] Documentation improvements --- lib/ansible/modules/extras/windows/win_regedit.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/ansible/modules/extras/windows/win_regedit.py b/lib/ansible/modules/extras/windows/win_regedit.py index f428d1fcbd..47dc0a6c56 100644 --- a/lib/ansible/modules/extras/windows/win_regedit.py +++ b/lib/ansible/modules/extras/windows/win_regedit.py @@ -43,7 +43,7 @@ options: aliases: [] data: description: - - Registry Value Data. Binary data should be expressed as comma separated hex values. An easy way to generate this is to run regedit.exe and use the 'Export' option to save the registry values to a file. In the file binary values will look something like this: hex:be,ef,be,ef. The 'hex:' prefix is optional. + - Registry Value Data. Binary data should be expressed as comma separated hex values. An easy way to generate this is to run C(regedit.exe) and use the I(Export) option to save the registry values to a file. In the exported file binary values will look like C(hex:be,ef,be,ef). The C(hex:) prefix is optional. required: false default: null aliases: [] @@ -119,13 +119,12 @@ EXAMPLES = ''' RETURN = ''' data_changed: description: whether this invocation changed the data in the registry value - returned: always + returned: success type: boolean - sample: false + sample: False data_type_changed: description: whether this invocation changed the datatype of the registry value - returned: always + returned: success type: boolean - sample: true + sample: True ''' -