Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix a few typos #158

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
#'papersize': 'letterpaper',

# Set font package
# linux libertine needs this packafe installes on the machine
# linux libertine needs this package installs on the machine
# https://www.ctan.org/tex-archive/fonts/libertine/?lang=de
# but should also be in the full installation of tex-live
"fontpkg" : """
Expand Down
6 changes: 3 additions & 3 deletions src/correctness/no_exception_type_specified.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ Handle exceptions with Python's built in `exception types <https://docs.python.o
print("Type error: division by '{0}'.".format(b))
except Exception as e:
# handle any other exception
print("Error '{0}' occured. Arguments {1}.".format(e.message, e.args))
print("Error '{0}' occurred. Arguments {1}.".format(e.message, e.args))
else:
# Excecutes if no exception occured
# Excecutes if no exception occurred
print("No errors")
finally:
# Executes always
Expand All @@ -50,7 +50,7 @@ Handle exceptions with Python's built in `exception types <https://docs.python.o

With this pattern, you are able to handle exceptions based on their actual exception-type. The first exception type that matches the current error is handled first. Thus, it is recommended to handle specific exception types first (e.g., ZeroDivisionError) and generic error types (e.g., Exception) towards the end of the try-except block.

**Cleanup actions (optional)**: The `else`-clause executes only, if no exception occurred. It is useful to log the success of your code. The `finally`-block executes under all circumstances — no matter if an error occured or not. It is useful to clean up the `try-except` block.
**Cleanup actions (optional)**: The `else`-clause executes only, if no exception occurred. It is useful to log the success of your code. The `finally`-block executes under all circumstances — no matter if an error occurred or not. It is useful to clean up the `try-except` block.

Implement user defined exceptions
---------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/django/1.8/migration/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:fa:`magic` Migration to 1.8
===========================

Migrating to a new Django version can be time consuming. To make this process easier, this chapter lists deprecated features and shows potential migration patterns/pathes.
Migrating to a new Django version can be time consuming. To make this process easier, this chapter lists deprecated features and shows potential migration patterns/paths.

.. toctree::
:maxdepth: 1
Expand Down
2 changes: 1 addition & 1 deletion src/django/all/security/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:fa:`lock` Security
===================

Most Django applications contain a lot of proprietory or even confidential information. Hence, it is crucial to take all possible measures to take your Django application secure and to recude the possibility of being hacked.
Most Django applications contain a lot of proprietary or even confidential information. Hence, it is crucial to take all possible measures to take your Django application secure and to reduce the possibility of being hacked.

Use the following patterns to increase the security of your code.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Not using ``iteritems()`` to iterate over a large dictionary in Python 2
Anti-pattern
------------

The code below defines one large dictionary (created with dictionary comprehension) that generates large amounts of data. When using ``items()`` method, the iteration needs to be completed and stored in-memory before ``for`` loop can begin iterating. The prefered way is to use ``iteritems``. This uses (~1.6GB).
The code below defines one large dictionary (created with dictionary comprehension) that generates large amounts of data. When using ``items()`` method, the iteration needs to be completed and stored in-memory before ``for`` loop can begin iterating. The preferred way is to use ``iteritems``. This uses (~1.6GB).

.. code:: python

Expand Down
2 changes: 1 addition & 1 deletion src/readability/not_using_a_dict_comprehension.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ The modified code below uses the new dict comprehension syntax which was introdu
References
----------

- `Stack Overflow - Create a dictionary with list comprehesion <http://stackoverflow.com/questions/1747817/python-create-a-dictionary-with-list-comprehension>`_
- `Stack Overflow - Create a dictionary with list comprehension <http://stackoverflow.com/questions/1747817/python-create-a-dictionary-with-list-comprehension>`_


Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Not using dict keys when formatting strings
===========================================

When formatting a string with values from a dictionary, you can use the dictionary keys instead of explicity defining all of the format parameters. Consider this dictionary that stores the name and age of a person.
When formatting a string with values from a dictionary, you can use the dictionary keys instead of explicitly defining all of the format parameters. Consider this dictionary that stores the name and age of a person.


.. code:: python
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Best practice
Remove type notation
....................

Although the modifed code below does not fix the underlying problem of attempting to divide a number by a string, the code is generally less misleading, because there is no misleading description in the variable name ``n`` that ``n`` is a number.
Although the modified code below does not fix the underlying problem of attempting to divide a number by a string, the code is generally less misleading, because there is no misleading description in the variable name ``n`` that ``n`` is a number.

.. code:: python

Expand Down