We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25a863d commit b3f7359Copy full SHA for b3f7359
src/Pathy/Name.purs
@@ -58,7 +58,7 @@ splitName (Name nameIn) =
58
joinName :: forall n. { name :: NonEmptyString, ext :: Maybe NonEmptyString } -> Name n
59
joinName { name, ext } = Name $ case ext of
60
Nothing -> name
61
- Just ext -> name <> NES.singleton '.' <> ext
+ Just ext' -> name <> NES.singleton '.' <> ext'
62
63
-- | Retrieves the extension of a name. also see [`splitName`](#v:splitName)
64
-- |
0 commit comments