Fix incorrect glob example (#956)

Correct glob docs and use realistic file extensions.
This commit is contained in:
Michael Case
2025-02-14 15:31:04 -06:00
committed by GitHub
parent 28df90527b
commit 350b71a634

View File

@@ -5076,8 +5076,8 @@ TIP: If incorporating escape characters into a glob pattern, use <<custom-string
|===
|Pattern |Description
|`*.pc[lf]`
|Anything suffixed by `.pkl`, or `.pcf`.
|`*.pk[lg]`
|Anything suffixed by `.pkl`, or `.pkg`.
|`**.y{a,}ml`
|Anything suffixed by either `yml` or `yaml`, crossing directory boundaries.