Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
-
8af260d0
by Nikolaos Chatzikonstantinou at 2025-08-06T08:37:23-04:00
1 changed file:
Changes:
| ... | ... | @@ -315,7 +315,7 @@ arguments: |
| 315 | 315 | > module Opts1 where
|
| 316 | 316 | >
|
| 317 | 317 | > import System.Console.GetOpt
|
| 318 | -> import GHC.Internal.Data.Maybe ( fromMaybe )
|
|
| 318 | +> import Data.Maybe ( fromMaybe )
|
|
| 319 | 319 | >
|
| 320 | 320 | > data Flag
|
| 321 | 321 | > = Verbose | Version
|
| ... | ... | @@ -356,7 +356,7 @@ A different approach is to group the option values in a record of type |
| 356 | 356 | > module Opts2 where
|
| 357 | 357 | >
|
| 358 | 358 | > import System.Console.GetOpt
|
| 359 | -> import GHC.Internal.Data.Maybe ( fromMaybe )
|
|
| 359 | +> import Data.Maybe ( fromMaybe )
|
|
| 360 | 360 | >
|
| 361 | 361 | > data Options = Options
|
| 362 | 362 | > { optVerbose :: Bool
|