Skip to content

Commit

Permalink
Fix shadowing warning
Browse files Browse the repository at this point in the history
  • Loading branch information
quchen authored and fmthoma committed Aug 13, 2017
1 parent 818fe66 commit 448eed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Text/Trifecta/Parser.hs
Expand Up @@ -351,7 +351,7 @@ stepParser (Parser p) d0 bs0 = go mempty $ p eo ee co ce d0 bs0 where
ErrInfo (explain (renderingCaret d0 bs0) e) (d0 : _finalDeltas e)
CO a _ _ _ -> Success a
CE d -> Failure d
) (\r -> go r (k r))
) (\s -> go s (k s))
{-# INLINE stepParser #-}

-- | @('parseFromFile' p filePath)@ runs a parser @p@ on the input read from
Expand Down

0 comments on commit 448eed4

Please sign in to comment.