Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kianmeng committed Nov 1, 2021
1 parent 0ade53b commit 28b904f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ v21.6.0
* #403: Keyring no longer eagerly initializes the backend
on import, but instead defers the backend initialization
until a keyring is accessed. Any callers reliant on this
early intialization behavior may need to call
early initialization behavior may need to call
``keyring.core.init_backend()`` to explicitly initialize
the detected backend.

Expand Down Expand Up @@ -450,7 +450,7 @@ with a major version bump.
10.3.1
------

* #266: Use private compatibity model rather than six to
* #266: Use private compatibility model rather than six to
avoid the dependency.

10.3
Expand Down
4 changes: 2 additions & 2 deletions keyring/util/platform_.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def _data_root_Windows():

def _data_root_Linux():
"""
Use freedesktop.org Base Dir Specfication to determine storage
Use freedesktop.org Base Dir Specification to determine storage
location.
"""
fallback = pathlib.Path.home() / '.local/share'
Expand Down Expand Up @@ -53,7 +53,7 @@ def _check_old_config_root():

def _config_root_Linux():
"""
Use freedesktop.org Base Dir Specfication to determine config
Use freedesktop.org Base Dir Specification to determine config
location.
"""
_check_old_config_root()
Expand Down

0 comments on commit 28b904f

Please sign in to comment.