Fix return values types for find module in docs (#59480)

* Update find.py (#59456)
Return values for `matched` and `examined` in the find module are integers and not strings.
(cherry picked from commit 7b4ce9e4ae)
This commit is contained in:
UNR Information Security 2019-07-25 13:47:39 -07:00 committed by Alicia Cozine
parent 9b1615058e
commit 8e9c8c5b8f
2 changed files with 4 additions and 2 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- Correct the return values of matched and examined from string to int

View file

@ -197,12 +197,12 @@ files:
matched:
description: Number of matches
returned: success
type: str
type: int
sample: 14
examined:
description: Number of filesystem objects looked at
returned: success
type: str
type: int
sample: 34
'''