From 37cb44ec37355524ca6a9ec6296e19e3ee74ac98 Mon Sep 17 00:00:00 2001 From: Vlad Glagolev Date: Fri, 25 Aug 2023 10:22:43 -0700 Subject: [PATCH] find: correct typo (#81512) --- lib/ansible/modules/find.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/find.py b/lib/ansible/modules/find.py index fd5fd38985b..d2e6c8bc051 100644 --- a/lib/ansible/modules/find.py +++ b/lib/ansible/modules/find.py @@ -59,8 +59,8 @@ options: contains: description: - A regular expression or pattern which should be matched against the file content. - - If O(read_whole_file) is V(true) it matches against the beginning of the line (uses - V(re.match(\))). If O(read_whole_file) is V(false), it searches anywhere for that pattern + - If O(read_whole_file) is V(false) it matches against the beginning of the line (uses + V(re.match(\))). If O(read_whole_file) is V(true), it searches anywhere for that pattern (uses V(re.search(\))). - Works only when O(file_type) is V(file). type: str