Change type variable name.

This commit is contained in:
Dillon Kearns 2022-08-21 11:04:10 -07:00
parent c87a5d8223
commit f7286153a5

View File

@ -1408,13 +1408,13 @@ type alias DoneForm error parsed data view =
{-| -} {-| -}
type alias HtmlForm error parsed data msg = type alias HtmlForm error parsed input msg =
Form Form
error error
{ combine : Combined error parsed { combine : Combined error parsed
, view : Context error data -> List (Html (Pages.Msg.Msg msg)) , view : Context error input -> List (Html (Pages.Msg.Msg msg))
} }
data input
{-| -} {-| -}