Skip to content

Commit 344bdf5

Browse files
committed
Typo fixes in function_caching.rst
1 parent 4473bb3 commit 344bdf5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

function_caching.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Let's see how we can use it in Python 3.2+ and the versions before it.
1313
Python 3.2+
1414
^^^^^^^^^^^
1515

16-
Let's implement a ficonnaci calculator and use ``lru_cache``.
16+
Let's implement a Fibonacci calculator and use ``lru_cache``.
1717

1818
.. code:: python
1919
@@ -41,7 +41,7 @@ Python 2+
4141
^^^^^^^^^
4242

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

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

0 commit comments

Comments
 (0)