diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-12-14 11:10:56 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-12-14 19:49:28 -0500 |
commit | a1c0b70638949a73bbd404c11797f2edf28f5965 (patch) | |
tree | 0c95a377ac62ab9365b89f2ba9f6e6ba5e1ed85a /docs | |
parent | aeefd7b36b2cab640352f6c8bd16c62d38782edf (diff) | |
download | haskell-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 'docs')
-rw-r--r-- | docs/users_guide/ghci.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users_guide/ghci.rst b/docs/users_guide/ghci.rst index 49a96caa0b..f468e80eb0 100644 --- a/docs/users_guide/ghci.rst +++ b/docs/users_guide/ghci.rst @@ -37,7 +37,7 @@ command ``ghci``: .. code-block:: none $ ghci - GHCi, version 8.y.z: http://www.haskell.org/ghc/ :? for help + GHCi, version 8.y.z: https://www.haskell.org/ghc/ :? for help Prelude> There may be a short pause while GHCi loads the prelude and standard @@ -2052,7 +2052,7 @@ by using the :ghc-flag:`-package ⟨pkg⟩` flag: .. code-block:: none $ ghci -package readline - GHCi, version 8.y.z: http://www.haskell.org/ghc/ :? for help + GHCi, version 8.y.z: https://www.haskell.org/ghc/ :? for help Loading package base ... linking ... done. Loading package readline-1.0 ... linking ... done. Prelude> |