Skip to content

Commit b3f7359

Browse files
committed
fix warning
1 parent 25a863d commit b3f7359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Pathy/Name.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ splitName (Name nameIn) =
5858
joinName :: forall n. { name :: NonEmptyString, ext :: Maybe NonEmptyString } -> Name n
5959
joinName { name, ext } = Name $ case ext of
6060
Nothing -> name
61-
Just ext -> name <> NES.singleton '.' <> ext
61+
Just ext' -> name <> NES.singleton '.' <> ext'
6262

6363
-- | Retrieves the extension of a name. also see [`splitName`](#v:splitName)
6464
-- |

0 commit comments

Comments
 (0)