summaryrefslogtreecommitdiff
path: root/Base/usr/share
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2021-10-03 22:56:30 +0200
committerAndreas Kling <kling@serenityos.org>2021-10-05 02:08:08 +0200
commit52e9f254032b7c5bc59f8eeb4cfaeb5cd9df323a (patch)
tree7b0550076223b089281c797a85f6eb4d4eed44c6 /Base/usr/share
parentce334ee1bca792ea0dc715519ca387cdc4e1ec55 (diff)
downloadserenity-52e9f254032b7c5bc59f8eeb4cfaeb5cd9df323a.zip
Everywhere: Change from http to https where feasible
I used "git grep -FIn http://" to find all occurrences, and looked at each one. If an occurrence was really just a link, and if a https version exists, and if our Browser can access it at least as well as the http version, then I changed the occurrence to https. I'm happy to report that I didn't run into a single site where Browser can't deal with the https version.
Diffstat (limited to 'Base/usr/share')
-rw-r--r--Base/usr/share/man/man1/less.md2
-rw-r--r--Base/usr/share/man/man1/open.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/Base/usr/share/man/man1/less.md b/Base/usr/share/man/man1/less.md
index 3ce6a66b63..8381104048 100644
--- a/Base/usr/share/man/man1/less.md
+++ b/Base/usr/share/man/man1/less.md
@@ -15,7 +15,7 @@ $ more [file]
`less` is a terminal pager that allows backwards movement. It is inspired by,
but largely incompatible with
-[GNU less](http://www.greenwoodsoftware.com/less/index.html).
+[GNU less](https://www.greenwoodsoftware.com/less/index.html).
## Options
diff --git a/Base/usr/share/man/man1/open.md b/Base/usr/share/man/man1/open.md
index 90e806f500..7d671959f6 100644
--- a/Base/usr/share/man/man1/open.md
+++ b/Base/usr/share/man/man1/open.md
@@ -16,7 +16,7 @@ kind of file. For non-file URLs, open the URL in the Browser.
## Examples
```sh
-$ open http://serenityos.org http://example.org
+$ open https://serenityos.org https://example.org
$ open /proc
$ open /etc/fstab
```