Skip to content
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 Coreutils/Uniq.hs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ optionDesc =
, Option "i" ["ignore-case"]
(NoArg
(\opt -> Right opt { optIgnoreCase = True }))
"Case insenstive comparision of lines"
"Case insenstive comparison of lines"

, Option "f" ["skip-fields"]
(ReqArg
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ shell to these implementations. The testing done is mostly thorough, but there's
some crazy usage of the coreutils out in the wild; like `cat - - -` in
build scripts. Who needs to read `stdin` three separate times? The standard
Haskell IO libraries make some sane assumptions that things like this don't
happen, so this project has balance ugly workarounds with idomatic behavior.
Where reasonable, idomatic is preferred. Further, this project relies on the
happen, so this project has balance ugly workarounds with idiomatic behavior.
Where reasonable, idiomatic is preferred. Further, this project relies on the
Haskell IO libraries for platform independence - where they decided to simplify
(permissions, file types), this project does also.

Expand Down
2 changes: 1 addition & 1 deletion todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
- [ ] Need tests, not sure how to do this in a platform independent way

## head
- [ ] Doesn't suppport byte suffixes like MB, K
- [ ] Doesn't support byte suffixes like MB, K

## cat
- [ ] some sort of encoding bug on windows with binary files (.jpg)
Expand Down