Skip to content
Snippets Groups Projects
Unverified Commit 69154b58 authored by Mayuri Lahane's avatar Mayuri Lahane Committed by GitHub
Browse files

Fixed typos (#71)

parent a9f9be18
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ Changes
- Fixed #28: use Debian-compliant, machine-readable copyright format. Kudos to
`Simon Fondrie-Teitler <https://github.com/simonft>`_ and @anarcat.
- Fixed #48: Clarify trademark status of diceware. Mr. Reinhold granted
permission to use the name 'Diceware' in this project and under the condtions
permission to use the name 'Diceware' in this project and under the conditions
listed in the issue comments. Many thanks to him!
......@@ -89,7 +89,7 @@ Changes
----------------
- Closed #23. @dwcoder provided a fix that allows use of
whitespace-only values in diceware confg files if they are enclosed
whitespace-only values in diceware config files if they are enclosed
in quotes.
- Fixed #21. @dwcoder revealed and fixed (again!). This time `--caps`
and `--no-caps` settings did not work properly when set in CLI or in
......@@ -129,7 +129,7 @@ Changes
0.6 (2015-12-15)
----------------
- Officially support Pyhthon 3.5.
- Officially support Python 3.5.
- Tests do not depend on `pytest-cov`, `pytest-xdist` anymore.
- Support configuration files. You can set different defaults in a
file called ``.diceware.ini`` in your home directory.
......
......@@ -125,7 +125,7 @@ make your passphrases more readable (and more secure, see
`Security Traps <#sec-traps>`_ below).
By default the single phrase words are capitalized, i.e. the first
char of each word is made uppercase. This does not neccessarily give
char of each word is made uppercase. This does not necessarily give
better entropy (but protects against entropy loss due to non `prefix
code`_, see `Security Traps <#sec-traps>`_ below), and it might
improve phrase readability.
......
......@@ -67,7 +67,7 @@ def get_config_dict(
"""Get config values found in files from `path_list`.
Read files in `path_list` config files and return option values from
section `section` as regular dictonary.
section `section` as regular dictionary.
We only accept values for which a default exists in
`defaults_dict`. If `defaults_dict` is ``None`` we use
......
......@@ -40,7 +40,7 @@ RE_VALID_WORDLIST_FILENAME = re.compile(
def get_wordlists_dir():
"""Get the directory in which wordlsts are stored.
"""Get the directory in which word lists are stored.
"""
return os.path.abspath(
os.path.join(os.path.dirname(__file__), 'wordlists'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment