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/4420/head
Ted Timmons 2016-08-15 06:38:27 -07:00 committed by Brian Coca
parent 4c034fd002
commit f4bd38a153
1 changed files with 2 additions and 2 deletions

View File

@ -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