Fix typo (s/wiget/widget/)

This commit is contained in:
Mario Lang 2021-07-29 18:42:27 +02:00
parent 15d56de2bb
commit 3ba1001950

View File

@ -60,7 +60,7 @@ withFocusRing :: (Eq n, Named a n)
-> (Bool -> a -> b)
-- ^ A function that takes a value and its focus state.
-> a
-- ^ The wiget state value that we need to check for focus.
-- ^ The widget state value that we need to check for focus.
-> b
-- ^ The rest of the computation.
withFocusRing ring f a = f (focusGetCurrent ring == Just (getName a)) a