Rename Glob -> GlobPattern.
This commit is contained in:
parent
dd5de4dd99
commit
37d7142475
3 changed files with 3 additions and 3 deletions
|
@ -12,4 +12,4 @@ Build-Depends: base, filepath, mtl, unix
|
||||||
GHC-Options: -Wall
|
GHC-Options: -Wall
|
||||||
Exposed-Modules:
|
Exposed-Modules:
|
||||||
System.FilePath.Find,
|
System.FilePath.Find,
|
||||||
System.FilePath.Glob
|
System.FilePath.GlobPattern
|
||||||
|
|
|
@ -61,7 +61,7 @@ import Data.Bits (Bits, (.&.))
|
||||||
import Data.List (sort)
|
import Data.List (sort)
|
||||||
import System.Directory (getDirectoryContents)
|
import System.Directory (getDirectoryContents)
|
||||||
import System.FilePath ((</>), takeDirectory, takeExtension, takeFileName)
|
import System.FilePath ((</>), takeDirectory, takeExtension, takeFileName)
|
||||||
import System.FilePath.Glob (GlobPattern, (~~), (/~))
|
import System.FilePath.GlobPattern (GlobPattern, (~~), (/~))
|
||||||
import System.IO (hPutStrLn, stderr)
|
import System.IO (hPutStrLn, stderr)
|
||||||
import System.IO.Unsafe (unsafeInterleaveIO, unsafePerformIO)
|
import System.IO.Unsafe (unsafeInterleaveIO, unsafePerformIO)
|
||||||
import qualified Control.Exception as E
|
import qualified Control.Exception as E
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module System.FilePath.Glob (
|
module System.FilePath.GlobPattern (
|
||||||
GlobPattern
|
GlobPattern
|
||||||
, (~~)
|
, (~~)
|
||||||
, (/~)
|
, (/~)
|
Loading…
Add table
Add a link
Reference in a new issue