1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 16:33:03 +03:00

Fix a typo.

This commit is contained in:
Rob Rix 2018-05-11 11:59:33 -04:00
parent 21e4b96f21
commit fa7c731a4c

View File

@ -48,7 +48,7 @@ withCurrentSpan = local . const
withCurrentSrcLoc :: (Effectful m, Members '[Reader ModuleInfo, Reader Span] effects) => SrcLoc -> m effects a -> m effects a
withCurrentSrcLoc loc = withCurrentModule (moduleInfoFromSrcLoc loc) . withCurrentSpan (spanFromSrcLoc loc)
-- | Run ana ction with locally replaced 'ModuleInfo' & 'Span' derived from the Haskell call stack.
-- | Run an action with locally replaced 'ModuleInfo' & 'Span' derived from the Haskell call stack.
--
-- This is suitable for contextualizing builtins & other functionality intended for use from client code but defined in Haskell source.
withCurrentCallStack :: (Effectful m, Members '[Reader ModuleInfo, Reader Span] effects) => CallStack -> m effects a -> m effects a