Skip to content

Commit c7cf825

Browse files
authored
Fix cabal description (#289)
1 parent 0554fdc commit c7cf825

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

src/Stan/Inspection/AntiPattern.hs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ import Stan.Core.Id (Id (..))
5555
import Stan.Inspection (Inspection (..), InspectionAnalysis (..), InspectionsMap, categoryL,
5656
descriptionL, severityL, solutionL)
5757
import Stan.NameMeta (NameMeta (..), baseNameFrom, mkBaseFoldableMeta, mkBaseOldListMeta,
58-
textNameFrom, unorderedNameFrom)
58+
primTypeMeta, textNameFrom, unorderedNameFrom)
5959
import Stan.Pattern.Ast (Literal (..), PatternAst (..), anyNamesToPatternAst, app,
6060
namesToPatternAst, opApp, range)
6161
import Stan.Pattern.Edsl (PatternBool (..))
62-
import Stan.Pattern.Type (PatternType, foldableMethodsPatterns, foldableTypesPatterns, listPattern,
63-
stringPattern, textPattern, (|->), (|::))
62+
import Stan.Pattern.Type (PatternType, charPattern, foldableMethodsPatterns, foldableTypesPatterns,
63+
listPattern, stringPattern, textPattern, (|->), (|::))
6464
import Stan.Severity (Severity (..))
6565

6666
import qualified Data.List.NonEmpty as NE
@@ -329,7 +329,7 @@ filepathOperator = PatternAstName operatorPosix fun
329329
filePathType :: PatternType
330330
filePathType = "FilePath" `baseNameFrom` "GHC.IO" |:: []
331331
||| stringPattern
332-
-- ||| primTypeMeta "[]" |:: [ charPattern ]
332+
||| primTypeMeta "[]" |:: [ charPattern ]
333333

334334
-- | 'Inspection' — usage of @unsafe*@ functions @STAN-0212@.
335335
stan0212 :: Inspection

stan.cabal

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
cabal-version: 2.4
22
name: stan
33
version: 0.0.0.0
4-
synopsis: Haskell static analyser
5-
description: Haskell static analyser
6-
See [README.md](https://github.com/kowainik/stan#stan) for more details.
4+
synopsis: Haskell STatic ANalyser
5+
description:
6+
Stan is a Haskell __ST__atic __AN__alysis CLI tool.
7+
See [README.md](https://github.com/kowainik/stan#stan) for more details.
78
homepage: https://github.com/kowainik/stan
89
bug-reports: https://github.com/kowainik/stan/issues
910
license: MPL-2.0

0 commit comments

Comments
 (0)