From 33d5c68887a063340355bf1a5c24ac2d66e6992b Mon Sep 17 00:00:00 2001 From: Osman Ullah Date: Fri, 14 Feb 2020 15:30:35 -0500 Subject: [PATCH] Add newline in description of win_file.state (#67427) --- lib/ansible/modules/windows/win_file.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/windows/win_file.py b/lib/ansible/modules/windows/win_file.py index 7b4214c7550..28149579cda 100644 --- a/lib/ansible/modules/windows/win_file.py +++ b/lib/ansible/modules/windows/win_file.py @@ -30,8 +30,8 @@ options: - If C(directory), all immediate subdirectories will be created if they do not exist. - If C(file), the file will NOT be created if it does not exist, see the M(copy) - or M(template) module if you want that behavior. If C(absent), - directories will be recursively deleted, and files will be removed. + or M(template) module if you want that behavior. + - If C(absent), directories will be recursively deleted, and files will be removed. - If C(touch), an empty file will be created if the C(path) does not exist, while an existing file or directory will receive updated file access and modification times (similar to the way C(touch) works from the command line).