mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-25 12:52:27 +03:00
Add missing doc comment.
This commit is contained in:
parent
880b32563d
commit
4689157d47
@ -1,12 +1,11 @@
|
||||
module Pages.Transition exposing
|
||||
( Transition(..), LoadingState(..)
|
||||
( Transition(..), LoadingState(..), map
|
||||
, FetcherState, FetcherSubmitStatus(..)
|
||||
, map
|
||||
)
|
||||
|
||||
{-|
|
||||
|
||||
@docs Transition, LoadingState
|
||||
@docs Transition, LoadingState, map
|
||||
|
||||
|
||||
## Fetchers
|
||||
@ -49,6 +48,7 @@ type FetcherSubmitStatus actionData
|
||||
| FetcherComplete actionData
|
||||
|
||||
|
||||
{-| -}
|
||||
map : (a -> b) -> FetcherState a -> FetcherState b
|
||||
map mapFn fetcherState =
|
||||
{ status = mapStatus mapFn fetcherState.status
|
||||
|
Loading…
Reference in New Issue
Block a user