diff --git a/docs/index.rst b/docs/index.rst
index 7ba351f..8bcf19e 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -10,7 +10,7 @@ See also the `Github Homepage`_ and the `Updates Blog`_
.. _Github Homepage: https://github.com/overviewer/Minecraft-Overviewer
-.. _Updates Blog: http://overviewer.org/blog/
+.. _Updates Blog: https://overviewer.org/blog/
Introduction
============
@@ -24,7 +24,7 @@ and many plugins for even more features! It is written mostly in Python with
critical sections in C as an extension module.
For a simple example of what your renders will look like, head over to `The
-"Exmaple" Map `_. For more user-contributed
+"Exmaple" Map `_. For more user-contributed
examples, see `The Example Wiki Page `_.
.. image:: front_page_screenshot.png
diff --git a/docs/installing.rst b/docs/installing.rst
index 212ef6f..01eb898 100644
--- a/docs/installing.rst
+++ b/docs/installing.rst
@@ -8,7 +8,7 @@ If you want to build the Overviewer from source yourself, head to :doc:`Building
:doc:`running`.
The latest prebuilt packages for various systems will always be found
-at the `Overviewer Downloads `_ page.
+at the `Overviewer Downloads `_ page.
Windows
@@ -16,7 +16,7 @@ Windows
Running Windows and don't want to compile the Overviewer? You've come to the
right place!
-1. Head to the `Downloads `_ page and download the most recent Windows download for your architecture (32 or 64 bit).
+1. Head to the `Downloads `_ page and download the most recent Windows download for your architecture (32 or 64 bit).
2. For 32 bit you may need to install the `VC++ 2008 `_ and `VC++ 2010 `_ redistributables.
@@ -33,14 +33,14 @@ a ``python2.6`` package. To do this, add the following line to your
::
- deb http://overviewer.org/debian ./
+ deb https://overviewer.org/debian ./
Our APT repository is signed. To install the key (and allow for
automatic updates), run
::
- wget -O - http://overviewer.org/debian/overviewer.gpg.asc | sudo apt-key add -
+ wget -O - https://overviewer.org/debian/overviewer.gpg.asc | sudo apt-key add -
Then run ``apt-get update`` and ``apt-get install minecraft-overviewer`` and
you're all set! See you at the :doc:`running` page!
@@ -52,7 +52,7 @@ distros. To add the Overviewer repository to YUM, just run
::
- wget -O /etc/yum.repos.d/overviewer.repo http://overviewer.org/rpms/overviewer.repo
+ wget -O /etc/yum.repos.d/overviewer.repo https://overviewer.org/rpms/overviewer.repo
Then to install Overviewer run
diff --git a/docs/signs.rst b/docs/signs.rst
index f177791..7e8ad09 100644
--- a/docs/signs.rst
+++ b/docs/signs.rst
@@ -92,7 +92,7 @@ Here's an example that displays icons for each player::
def playerIcons(poi):
if poi['id'] == 'Player':
- poi['icon'] = "http://overviewer.org/avatar/%s" % poi['EntityId']
+ poi['icon'] = "https://overviewer.org/avatar/%s" % poi['EntityId']
return "Last known location for %s" % poi['EntityId']
Note how each POI can get a different icon by setting ``poi['icon']``. These icons must exist in either
diff --git a/docs/win_tut/windowsguide.rst b/docs/win_tut/windowsguide.rst
index c5af410..b633657 100644
--- a/docs/win_tut/windowsguide.rst
+++ b/docs/win_tut/windowsguide.rst
@@ -25,7 +25,7 @@ Now that you know how to open a command line, and haven't been scared off yet,
the next step is to download the latest Overviewer.
**Step 2:** Download Overviewer
- Go to the `Downloads Page `_ and
+ Go to the `Downloads Page `_ and
download the *latest* version for your architecture, either 32 bit
or 64 bit.
@@ -141,7 +141,7 @@ yet.
The preferred way to run The Overviewer is with a *configuration file*. Without
one, you can only do the most basic of renders. Once you're ready, head to the
:doc:`../config` page to see what else The Overviewer can do. And as always,
-feel free to drop by in `IRC `_ if you have any
+feel free to drop by in `IRC `_ if you have any
questions! We're glad to help!
Common Pitfalls
@@ -175,9 +175,9 @@ Using GitHub Gist
Sometimes, when helping people with issues with Overviewer, we'll often
ask to see the config file you're using, or, if there was an Overviewer
-error, a full copy of an error message. Unfortunately, `IRC `_
+error, a full copy of an error message. Unfortunately, `IRC `_
is not a good way to send large amounts of text. So we often ask users
-to create a `Gist `_ containing the text we want
+to create a `Gist `_ containing the text we want
to see. Sites like these are also called Pastebins, and you are welcome
to use your favorite pastebin site, if you'd like.