Skip to content

Commit

Permalink
Update Extra.elm
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Westby authored Nov 1, 2016
1 parent 784f7ef commit c95d07c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Json/Decode/Extra.elm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import Set exposing (Set)

{-| Can be helpful when decoding large objects incrementally.
See [the `andMap` docs](https://github.com/elm-community/json-extra/blob/master/docs/andMap.md)
See [the `andMap` docs](https://github.com/elm-community/json-extra/blob/2.0.0/docs/andMap.md)
for an explanation of how `andMap` works and how to use it.
-}
andMap : Decoder a -> Decoder (a -> b) -> Decoder b
Expand All @@ -43,7 +43,7 @@ andMap =

{-| Infix version of `andMap` that makes for a nice DSL when decoding objects.
See [the `(|:)` docs](https://github.com/elm-community/json-extra/blob/master/docs/infixAndMap.md)
See [the `(|:)` docs](https://github.com/elm-community/json-extra/blob/2.0.0/docs/infixAndMap.md)
for an explanation of how `(|:)` works and how to use it.
-}
(|:) : Decoder (a -> b) -> Decoder a -> Decoder b
Expand Down

0 comments on commit c95d07c

Please sign in to comment.