s/avaiable/available/ (#378)

This commit is contained in:
Grzegorz 2021-05-16 08:22:09 +02:00 committed by GitHub
parent f57234d406
commit 442a51ca27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ the library. So below you can find the key design principles behind `relude`:
`bytestring` to dependencies in your `.cabal` file to use the
main API of these libraries
+ No need to import types like `NonEmpty`, `Text`, `Set`, `Reader[T]`, `MVar`, `STM`
+ Functions like `liftIO`, `fromMaybe`, `sortWith` are avaiable by default as well
+ Functions like `liftIO`, `fromMaybe`, `sortWith` are available by default as well
+ `IO` actions are lifted to `MonadIO`
7. **Excellent documentation.**

View File

@ -57,7 +57,7 @@ description:
and @bytestring@ to dependencies in your @.cabal@ file to
use the main API of these libraries
2. No need to import types like @NonEmpty@, @Text@, @Set@, @Reader[T]@, @MVar@, @STM@
3. Functions like @liftIO@, @fromMaybe@, @sortWith@ are avaiable by default as well
3. Functions like @liftIO@, @fromMaybe@, @sortWith@ are available by default as well
4. @IO@ actions are lifted to @MonadIO@
* __Excellent documentation.__