Skip to content

Commit b38869c

Browse files
kenranunderscoresvenpanne
authored andcommitted
Fix a typo
1 parent 95e18db commit b38869c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/StateVar.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ infixr 2 $~, $~!
214214

215215
-- | This is the class of all updatable state variables.
216216
class HasSetter t b => HasUpdate t a b | t -> a b where
217-
-- | Transform the contents of a state variable with a given funtion.
217+
-- | Transform the contents of a state variable with a given function.
218218
($~) :: MonadIO m => t -> (a -> b) -> m ()
219219
#if USE_DEFAULT_SIGNATURES
220220
default ($~) :: (MonadIO m, a ~ b, HasGetter t a) => t -> (a -> b) -> m ()

0 commit comments

Comments
 (0)