diff --git a/docs/_templates/links.html b/docs/_templates/links.html
index 3e30f08..b06cba1 100644
--- a/docs/_templates/links.html
+++ b/docs/_templates/links.html
@@ -6,18 +6,18 @@
{% endif %}
Current Release
Links
diff --git a/docs/as-module.rst b/docs/as-module.rst
index 179412e..e9ff9b6 100644
--- a/docs/as-module.rst
+++ b/docs/as-module.rst
@@ -68,7 +68,7 @@ call::
A reference of the many methods provided by the :mod:`instaloader` module is
provided in the remainder of this document. Feel free to direct any issue or
contribution to
-`Instaloader on Github `__.
+`Instaloader on Github `__.
``Instaloader`` (Main Class)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
diff --git a/docs/conf.py b/docs/conf.py
index edbd7b6..3895974 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -364,6 +364,6 @@ def get_latest_tag(repo):
version_date = datetime.strptime(latest_tag['tagger']['date'], "%Y-%m-%dT%H:%M:%SZ")
return version_string[1:], re.sub(r'\b0+(\d)', r'\1', "{:%d %b %Y}".format(version_date))
-current_release, current_release_date = get_latest_tag('Thammus/instaloader')
+current_release, current_release_date = get_latest_tag('instaloader/instaloader')
html_context = {'current_release': current_release, 'current_release_date': current_release_date}
diff --git a/docs/contributing.rst b/docs/contributing.rst
index a8d16cf..eb02fc4 100644
--- a/docs/contributing.rst
+++ b/docs/contributing.rst
@@ -6,14 +6,14 @@ its community. In this document, we advise on how you may help Instaloader to
become an even greater tool.
Instaloader's development is organized on
-`GitHub `__, where Issues and Pull
+`GitHub `__, where Issues and Pull
Requests are discussed.
Reporting Bugs
--------------
If you encounter a bug, do not hesitate to report it in our
-`Issue Tracker `__. Since
+`Issue Tracker `__. Since
Instaloader is actively developed, the majority of bugs is fixed within only
**4 days** after being reported. When reporting a problem, please keep the
following in mind:
@@ -40,7 +40,7 @@ Writing Code or Improving the Documentation
-------------------------------------------
Changes of the Instaloader source can be proposed as a
-`Pull Request `__. There are only
+`Pull Request `__. There are only
few things to consider:
- Sometimes, the most current code is not in the ``master`` branch. Check that
@@ -64,7 +64,7 @@ Suggesting Features
If you have an idea of how Instaloader should be enhanced, but do not want to
implement the feature yourself, feel free to open a ticket in our
-`Issue Tracker `__.
+`Issue Tracker `__.
Please consider the following:
- Instaloader already has plenty of features. **Check the documentation**
diff --git a/docs/index.rst b/docs/index.rst
index 4d90d6e..96e5ae0 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -31,7 +31,7 @@ With `Python `__ installed, do::
- allows **fine-grained customization** of filters and where to store
downloaded media,
-- is free `open source `__
+- is free `open source `__
software written in Python.
::
@@ -56,10 +56,10 @@ Table of Contents
Useful Links
------------
-- `Git Repository (on GitHub) `__
+- `Git Repository (on GitHub) `__
- `PyPI Project Page `__
-- `Issue Tracker / Bug Tracker `__
-- `Version History `__
+- `Issue Tracker / Bug Tracker `__
+- `Version History `__
.. include:: ../README.rst
:start-after: disclaimer-start
diff --git a/docs/installation.rst b/docs/installation.rst
index 3216d7d..4c14c4f 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -12,11 +12,11 @@ installed, you may install Instaloader using
pip3 install instaloader
Alternatively, to get the most current version of Instaloader from our
-`Git repository `__:
+`Git repository `__:
::
- pip3 install git+https://github.com/Thammus/instaloader
+ pip3 install git+https://github.com/instaloader/instaloader
(pass ``--upgrade`` to upgrade if Instaloader is already installed)
@@ -28,7 +28,7 @@ will be installed automatically, if it is not already installed.
- If you do not want to use pip, even though it is highly recommended,
and prefer to **install Instaloader manually**,
- `Download the Source `__,
+ `Download the Source `__,
extract the Zip or Tarball and execute ``instaloader.py`` from there.
- On **Arch Linux**, you may install Instaloader using the
diff --git a/instaloader.py b/instaloader.py
index 872c249..5f7a037 100755
--- a/instaloader.py
+++ b/instaloader.py
@@ -1504,7 +1504,7 @@ class Instaloader:
def main():
parser = ArgumentParser(description=__doc__, add_help=False,
- epilog="Report issues at https://github.com/Thammus/instaloader/issues. "
+ epilog="Report issues at https://github.com/instaloader/instaloader/issues. "
"The complete documentation can be found at "
"https://instaloader.readthedocs.io/.")