Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in compiler, normally hyphenated words. #249

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rio/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
* Add `foldMapM`
* Add `headMaybe`, `lastMaybe`, `tailMaybe`, `initMaybe`, `maximumMaybe`, `minimumMaybe`,
`maximumByMaybe`, `minimumByMaybe` functions to `RIO.List` module (issue #82)
* Move non partial functions `scanr1` and `scanl1` from `RIO.List.Partial` to `RIO.List` (issue #82)
* Move non-partial functions `scanr1` and `scanl1` from `RIO.List.Partial` to `RIO.List` (issue #82)
* Add `SimpleApp` and `runSimpleApp`
* Add `asIO`

Expand Down
4 changes: 2 additions & 2 deletions rio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
The goal of the `rio` library is to make it easier to adopt Haskell
for writing production software. It is intended as a cross between:

* Collection of well designed, trusted libraries
* Collection of well-designed, trusted libraries
* Useful `Prelude` replacement
* A set of best practices for writing production quality Haskell code

Expand Down Expand Up @@ -197,7 +197,7 @@ StaticPointers

### GHC Options

We recommend using these GHC complier warning flags on all projects, to catch
We recommend using these GHC compiler warning flags on all projects, to catch
problems that might otherwise go overlooked:

* `-Wall`
Expand Down