Skip to content

Commit

Permalink
Merge pull request #24 from StevenMaude/patch-1
Browse files Browse the repository at this point in the history
Typo fixes in function_caching.rst
  • Loading branch information
yasoob committed Aug 18, 2015
2 parents 482c759 + 344bdf5 commit 06d67fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions function_caching.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Let's see how we can use it in Python 3.2+ and the versions before it.
Python 3.2+
^^^^^^^^^^^

Let's implement a ficonnaci calculator and use ``lru_cache``.
Let's implement a Fibonacci calculator and use ``lru_cache``.

.. code:: python
Expand Down Expand Up @@ -41,7 +41,7 @@ Python 2+
^^^^^^^^^

There are a couple of ways to achieve the same effect. You can create
any type of caching machanism. It entirely depends upon your needs. Here
any type of caching mechanism. It entirely depends upon your needs. Here
is a generic cache:

.. code:: python
Expand Down Expand Up @@ -69,5 +69,5 @@ is a generic cache:
`Here <https://www.caktusgroup.com/blog/2015/06/08/testing-client-side-applications-django-post-mortem/>`__
is a fine article by Caktus Group in which they caught a bug in Django
which occured due to lru\_cache. It's an interesting read. Do check it
which occured due to ``lru_cache``. It's an interesting read. Do check it
out.

0 comments on commit 06d67fd

Please sign in to comment.