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.
pull/17091/head
Ted Timmons 8 years ago committed by Brian Coca
parent 4c034fd002
commit f4bd38a153

@ -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 <https://docs.python.org/2/library/glob.html>`_, and can be used like this::
---
- hosts: all

Loading…
Cancel
Save