Skip to content

Commit 91cdb50

Browse files
committed
Merge pull request #710 from dsfcode/master
Fix a few typos
2 parents b620def + 5888db7 commit 91cdb50

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/scenarios/db.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Records
2929

3030
`Records <https://github.com/kennethreitz/records>`_ is minimalist SQL library,
3131
designed for sending raw SQL queries to various databases. Data can be used
32-
programatically, or exported to a number of useful data formats.
32+
programmatically, or exported to a number of useful data formats.
3333

3434
.. code-block:: console
3535

docs/writing/structure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ clearer and thus preferred.
600600
This mechanism is useful for separating concerns and avoiding
601601
external un-related logic 'polluting' the core logic of the function
602602
or method. A good example of a piece of functionality that is better handled
603-
with decoration is memoization or caching: you want to store the results of an
603+
with decoration is memorization or caching: you want to store the results of an
604604
expensive function in a table and use them directly instead of recomputing
605605
them when they have already been computed. This is clearly not part
606606
of the function logic.

docs/writing/style.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,9 +455,9 @@ PEP 8
455455
easy-to-read version of PEP 8 is also available at `pep8.org <http://pep8.org/>`_.
456456

457457
This is highly recommended reading. The entire Python community does their
458-
best to adhere to the guidelines laidout within this document. Some project
458+
best to adhere to the guidelines laid out within this document. Some project
459459
may sway from it from time to time, while others may
460-
`ammend its recommendations <http://docs.python-requests.org/en/master/dev/contributing/#kenneth-reitz-s-code-style>`_.
460+
`amend its recommendations <http://docs.python-requests.org/en/master/dev/contributing/#kenneth-reitz-s-code-style>`_.
461461

462462
That being said, conforming your Python code to PEP 8 is generally a good
463463
idea and helps make code more consistent when working on projects with other

0 commit comments

Comments
 (0)