Add missing doc comments.

This commit is contained in:
Dillon Kearns 2021-05-16 10:06:26 -07:00
parent 63e92e5790
commit 53dfba9b07

View File

@ -1,15 +1,26 @@
module DataSource.Glob exposing
( Glob, atLeastOne, extractMatches, fullFilePath, literal, map, oneOf, recursiveWildcard, run, singleFile, succeed, toNonEmptyWithDefault, toPattern, toDataSource, wildcard, zeroOrMore
( Glob, atLeastOne, extractMatches, fullFilePath, literal, map, oneOf, run, singleFile, succeed, toNonEmptyWithDefault, toPattern, toDataSource, zeroOrMore
, wildcard, recursiveWildcard, int
, capture, ignore
, expectUniqueFile, int
, expectUniqueFile
)
{-|
@docs Glob, atLeastOne, extractMatches, fullFilePath, literal, map, oneOf, recursiveWildcard, run, singleFile, succeed, toNonEmptyWithDefault, toPattern, toDataSource, wildcard, zeroOrMore
@docs Glob, atLeastOne, extractMatches, fullFilePath, literal, map, oneOf, run, singleFile, succeed, toNonEmptyWithDefault, toPattern, toDataSource, zeroOrMore
## Capturing Patterns
@docs wildcard, recursiveWildcard, int
@docs capture, ignore
## File Matching Helpers
@docs expectUniqueFile
-}
import DataSource