Skip to content

Commit

Permalink
Fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
jhrcek committed Nov 2, 2024
1 parent 6852165 commit 0be1b47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ <h1>Hell: Shell scripting Haskell dialect</h1>
<li>It supports basic type-classes (Eq, Ord, Show, Monad), which are
needed for e.g. List.lookup and familiar equality things.</li>
<li>It does not support polytypes.</li>
<li>It use all the same names for things (List.lookup, Monad.forM,
<li>It uses all the same names for things (List.lookup, Monad.forM,
Async.race, etc.) that are already used in Haskell.</li>
</ul>

Expand Down
2 changes: 1 addition & 1 deletion src/Hell.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1583,7 +1583,7 @@ parseFile filePath = do
HSE.ParseOk binds -> Right binds

-- This should be quite efficient because it's essentially a pointer
-- increase. It leaves the \n so that line numbers are in tact.
-- increase. It leaves the \n so that line numbers are intact.
dropShebang :: Text -> Text
dropShebang t = Maybe.fromMaybe t do
rest <- Text.stripPrefix "#!" t
Expand Down

0 comments on commit 0be1b47

Please sign in to comment.