Skip to content

Commit 637a757

Browse files
format
1 parent c942722 commit 637a757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/Metadata.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ publishedMetadataCodec = CJ.named "PublishedMetadata" $ CJ.Record.object
9797
decode :: JSON -> Except CJ.DecodeError (Either Version (NonEmptyArray Version))
9898
decode json = except do
9999
map Left (CJ.decode Version.codec json)
100-
<|> map Right (CJ.decode (CJ.Common.nonEmptyArray Version.codec) json)
100+
<|> map Right (CJ.decode (CJ.Common.nonEmptyArray Version.codec) json)
101101

102102
encode = case _ of
103103
Left version -> CJ.encode Version.codec version

0 commit comments

Comments
 (0)