diff options
author | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2022-05-03 12:59:18 +0200 |
---|---|---|
committer | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2022-05-03 13:07:33 +0200 |
commit | 8abfa45f4c3ef3bf601fc15452a76b4b1ffefc1a (patch) | |
tree | ba1bfadb1a60d4b1a1ff103ad36d0fcffef90e5b /ghc | |
parent | 4a7809284354025d07221f0aeca10a7992d23677 (diff) | |
download | haskell-wip/fix-notes3.tar.gz |
Fix several note references, part 2wip/fix-notes3
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/GHCi/UI.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/GHCi/UI.hs b/ghc/GHCi/UI.hs index 8108accaa2..94fc07660b 100644 --- a/ghc/GHCi/UI.hs +++ b/ghc/GHCi/UI.hs @@ -3639,7 +3639,7 @@ completeBreakpoint = wrapCompleter spaces $ \w -> do -- #3000 pure $ zip (repeat str_rdr) $ GHC.nameModule <$> names -- For every top-level identifier in scope, add the bids of the nested - -- declarations. See Note [ModBreaks.decls] in GHC.ByteCode.Types + -- declarations. See Note [Field modBreaks_decls] in GHC.ByteCode.Types addNestedDecls :: GhciMonad m => (String, Module) -> m [String] addNestedDecls (ident, mod) = do (_, decls) <- getModBreak mod |