From 4dc4882726cd0dbb48da7b94d01d5a55fa38c4fa Mon Sep 17 00:00:00 2001 From: Rashad Gover Date: Fri, 26 Apr 2019 15:45:12 -0700 Subject: [PATCH] Fixed a typo. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I changed “cam” to “can”. --- src/Haskell/Ide/Engine/Channel.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Haskell/Ide/Engine/Channel.hs b/src/Haskell/Ide/Engine/Channel.hs index 5a88f2b60..29417cd33 100644 --- a/src/Haskell/Ide/Engine/Channel.hs +++ b/src/Haskell/Ide/Engine/Channel.hs @@ -13,7 +13,7 @@ where import qualified Control.Concurrent.STM.TChan as TChan import qualified Control.Concurrent.STM as STM --- | The writing end of a STM channel, only values of type 'a' cam be written +-- | The writing end of a STM channel, only values of type 'a' can be written -- to the channel newtype InChan a = InChan (TChan.TChan a)