summaryrefslogtreecommitdiff
path: root/compiler/utils
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2018-12-14 11:10:56 -0500
committerBen Gamari <ben@smart-cactus.org>2018-12-14 19:49:28 -0500
commita1c0b70638949a73bbd404c11797f2edf28f5965 (patch)
tree0c95a377ac62ab9365b89f2ba9f6e6ba5e1ed85a /compiler/utils
parentaeefd7b36b2cab640352f6c8bd16c62d38782edf (diff)
downloadhaskell-a1c0b70638949a73bbd404c11797f2edf28f5965.tar.gz
Use https links in user-facing startup and error messages
I consider myself lucky that in my circle of friends, `http` urls (as opposed to `https` urls) are frowned upon in that we generally apologize in the rase cases that we share an `http` url. This pull request changes `http` links into their `https` analogues in the following places: * In the GHCI startup message (and parts of the User's Guide, where there are verbatim transcripts of GHCi sessions). * In a couple of error messages, asking the user to report a bug. (I also took the liberty to change a single space before the reportabug url into two spaces, harmonizing this occurence with the others.) I'm not trying to start a war. I just had a moment to spare and felt like preparing this diff. Merge or don't merge as you wish! Reviewers: bgamari, erikd, simonmar Subscribers: goldfire, rwbarton, carter Differential Revision: https://phabricator.haskell.org/D5450
Diffstat (limited to 'compiler/utils')
-rw-r--r--compiler/utils/Panic.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/Panic.hs b/compiler/utils/Panic.hs
index 03f095b1a0..4f0f3b1b32 100644
--- a/compiler/utils/Panic.hs
+++ b/compiler/utils/Panic.hs
@@ -168,7 +168,7 @@ showGhcException exception
showString "panic! (the 'impossible' happened)\n"
. showString (" (GHC version " ++ cProjectVersion ++ " for " ++ TargetPlatform_NAME ++ "):\n\t")
. s . showString "\n\n"
- . showString "Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug\n"
+ . showString "Please report this as a GHC bug: https://www.haskell.org/ghc/reportabug\n"
throwGhcException :: GhcException -> a