-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve all Haddock warnings #43
base: master
Are you sure you want to change the base?
Conversation
Fix a typo and add a missing module description.
-- @ | ||
ifor_ :: (FoldableWithIndex i t, Applicative f) => t a -> (i -> a -> f b) -> f () | ||
ifor_ = flip itraverse_ | ||
{-# INLINE ifor_ #-} | ||
|
||
-- | Run monadic actions for each target of an 'IndexedFold' or 'Control.Lens.IndexedTraversal.IndexedTraversal' with access to the index, | ||
-- | Run monadic actions for each target of an 'ControlLens.Fold.IndexedFold' or 'Control.Lens.IndexedTraversal.IndexedTraversal' with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aren't these new links broken too, as there is no dependency on lens
anywhere near?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes you're right, there's no warning emitted by Haddock but the links are broken. I'll rewrite this to remove references to lens
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I rewrote that documentation to remove the references to lens
.
I also fixed another warning emitted by Haddock 2.30.0 by disambiguating type/constructor puns (previously I was testing with Haddock 2.29.2)
Haddocks previously referred to Identity/Compose types in a location where they should have referred to their constructors instead.
Do these changes look good now @phadej? |
Resolve all Haddock warnings by fixing broken links and removing links to non-existent values. Also add some minor improvements to documentation.