diff --git a/README.rst b/README.rst
index c10876c..d15c2b8 100644
--- a/README.rst
+++ b/README.rst
@@ -4,8 +4,8 @@ Funcy |Build Status|
A collection of fancy functional tools focused on practicality.
Inspired by clojure, underscore and my own abstractions. Keep reading to get an overview
-or `read the docs `_.
-Or jump directly to `cheatsheet `_.
+or `read the docs `_.
+Or jump directly to `cheatsheet `_.
Works with Python 3.4+ and pypy3.
@@ -155,7 +155,7 @@ Ease debugging:
# 10.2 ms in Creating models
-And `much more `_.
+And `much more `_.
Dive in
diff --git a/docs/_static/nhpup_1.1.js b/docs/_static/nhpup_1.1.js
index ca6ff5c..d07b2dd 100644
--- a/docs/_static/nhpup_1.1.js
+++ b/docs/_static/nhpup_1.1.js
@@ -7,7 +7,7 @@ Usage: `_.
+ :end-before: And `much more `_.
diff --git a/funcy/seqs.py b/funcy/seqs.py
index 9a96252..760a18e 100644
--- a/funcy/seqs.py
+++ b/funcy/seqs.py
@@ -108,7 +108,7 @@ def butlast(seq):
def ilen(seq):
"""Consumes an iterable not reading it into memory
and returns the number of items."""
- # NOTE: implementation borrowed from http://stackoverflow.com/a/15112059/753382
+ # NOTE: implementation borrowed from https://stackoverflow.com/a/15112059/753382
counter = count()
deque(zip(seq, counter), maxlen=0) # (consume at C speed)
return next(counter)
diff --git a/setup.py b/setup.py
index 8cd7b02..af138fe 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@
description='A fancy and practical functional tools',
long_description=README,
long_description_content_type="text/x-rst",
- url='http://github.com/Suor/funcy',
+ url='https://github.com/Suor/funcy',
license='BSD',
packages=['funcy'],