Merge pull request #1356 from LightAndLight/yesod-form/convertField-docs

Fixed some spelling issues in `Yesod.Form.Functions.convertField` documentation
This commit is contained in:
Michael Snoyman 2017-02-28 10:36:48 +02:00 committed by GitHub
commit 44675b3664
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
## 1.4.11
* Fix warnings
* Fixed spelling errors and wording for `Yesod.Form.Functions.convertField`'s
documentation
## 1.4.10

View File

@ -534,8 +534,8 @@ parseHelperGen f (x:_) _ = return $ either (Left . SomeMessage) (Right . Just) $
-- | Since a 'Field' cannot be a 'Functor', it is not obvious how to "reuse" a Field
-- on a @newtype@ or otherwise equivalent type. This function allows you to convert
-- a @Field m a@ to a @Field m b@ assuming you provide a bidireccional
-- convertion among the two, through the first two functions.
-- a @Field m a@ to a @Field m b@ assuming you provide a bidirectional
-- conversion between the two, through the first two functions.
--
-- A simple example:
--