Skip to content

Commit 1eaf86a

Browse files
Fix spelling error
Co-Authored-By: Alexandre Esteves <[email protected]>
1 parent 4eea268 commit 1eaf86a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Reflex/Query/Class.hs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ instance Query Void where
7373

7474
#if MIN_VERSION_base(4,12,0)
7575
-- | We can lift queries into monoidal containers.
76-
-- But beware of Applicatives who's monoid is different from (pure mempty, liftA2 mappend)
76+
-- But beware of Applicatives whose monoid is different from (pure mempty, liftA2 mappend)
7777
instance (Query q, Applicative f) => Query (Ap f q) where
7878
type QueryResult (Ap f q) = Ap f (QueryResult q)
7979
crop = liftA2 crop
@@ -148,4 +148,3 @@ queryDyn q = do
148148
-- | use a query morphism to operate on a smaller version of a query.
149149
subQuery :: (Reflex t, MonadQuery t q2 m, Monad m) => QueryMorphism q1 q2 -> Dynamic t q1 -> m (Dynamic t (QueryResult q1))
150150
subQuery (QueryMorphism f g) x = fmap g <$> queryDyn (fmap f x)
151-

0 commit comments

Comments
 (0)