1
1
mirror of https://github.com/coot/free-category.git synced 2024-11-22 16:22:05 +03:00

Fix typos (#40)

typos
This commit is contained in:
Gabor Greif 2022-04-09 13:40:11 +01:00 committed by GitHub
parent ede68196c8
commit f098617665
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ module Control.Category.Free
, foldlQ , foldlQ
, zipWithQ , zipWithQ
-- * Type alligned list -- * Type aligned list
, ListTr (..) , ListTr (..)
, liftL , liftL
, foldNatL , foldNatL

View File

@ -268,7 +268,7 @@ instance ArrowChoice f => ArrowChoice (ListTr f) where
-- --
-- | Type alligned real time queues; Based on `Purely Functinal Data Structures` -- | Type aligned real time queues; Based on `Purely Functinal Data Structures`
-- C.Okasaki. This the most reliably behaved implementation of free categories -- C.Okasaki. This the most reliably behaved implementation of free categories
-- in this package. -- in this package.
-- --