From f4bd38a153694665686ecbe73995548e1594c15b Mon Sep 17 00:00:00 2001 From: Ted Timmons Date: Mon, 15 Aug 2016 06:38:27 -0700 Subject: [PATCH] document what glob style is used (#17080) Took some digging to find that `with_fileglob` calls a method named `fileglob()`, which uses Python's `glob` library. --- docsite/rst/playbooks_loops.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsite/rst/playbooks_loops.rst b/docsite/rst/playbooks_loops.rst index eaad679c514..69cecc45d4a 100644 --- a/docsite/rst/playbooks_loops.rst +++ b/docsite/rst/playbooks_loops.rst @@ -125,8 +125,8 @@ Assuming that ``first_example_file`` contained the text "hello" and ``second_exa Looping over Fileglobs `````````````````````` -``with_fileglob`` matches all files in a single directory, non-recursively, that match a pattern. It can -be used like this:: +``with_fileglob`` matches all files in a single directory, non-recursively, that match a pattern. It calls +`Python's glob library `_, and can be used like this:: --- - hosts: all