diff options
author | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2021-08-29 23:07:43 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-09-08 03:00:57 -0400 |
commit | dcc1599f74d8115b3bd1bd87648866d89070a7e9 (patch) | |
tree | 9c4802eb4d683f39fb414b22b8ac8ee5cfa075ba /ghc | |
parent | fb1e0a5da67f075ae4f487e111fcf69d1dfcd42f (diff) | |
download | haskell-dcc1599f74d8115b3bd1bd87648866d89070a7e9.tar.gz |
Minor doc fixes
- Fix markup in 9.4 release notes
- Document -ddump-cs-trace
- Mention that ImpredicativeTypes is really supported only since 9.2
- Remove "There are some restrictions on the use of unboxed tuples".
This used to be a list, but all those restrictions were removed.
- Mark -fimplicit-import-qualified as documented
- Remove "The :main and :run command" - duplicated verbatim in options
- Avoid calling "main" a function (cf. #7816)
- Update System.getArgs: the old location was before hierarchical modules
- Note that multiplicity multiplication is not supported (#20319)
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/GHCi/UI.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/GHCi/UI.hs b/ghc/GHCi/UI.hs index 3bd7f0820c..369002b8bc 100644 --- a/ghc/GHCi/UI.hs +++ b/ghc/GHCi/UI.hs @@ -390,8 +390,8 @@ defFullHelpText = " :set local-config { source | ignore }\n" ++ " set whether to source .ghci in current dir\n" ++ " (loading untrusted config is a security issue)\n" ++ - " :set args <arg> ... set the arguments returned by System.getArgs\n" ++ - " :set prog <progname> set the value returned by System.getProgName\n" ++ + " :set args <arg> ... set the arguments returned by System.Environment.getArgs\n" ++ + " :set prog <progname> set the value returned by System.Environment.getProgName\n" ++ " :set prompt <prompt> set the prompt used in GHCi\n" ++ " :set prompt-cont <prompt> set the continuation prompt used in GHCi\n" ++ " :set prompt-function <expr> set the function to handle the prompt\n" ++ |