Skip to content

Commit a9d0334

Browse files
committed
fix typos
1 parent 9c5226a commit a9d0334

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/ewoks/_requirements/managers/utils/base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
class BaseManager:
1616
"""Defines the interface all package managers must implement.
1717
18-
If `MyManager` is an impementation of this interface then
19-
to get the Ewoks workflow requirements like this:
18+
If `MyManager` is an implementation of this interface then
19+
Ewoks workflow requirements can be obtained like this:
2020
2121
.. code-block:: python
2222
@@ -28,7 +28,7 @@ class BaseManager:
2828
.. code-block:: python
2929
3030
manager = MyManager()
31-
install_requirements.install_requirements(requirements)
31+
manager.install_requirements(requirements)
3232
"""
3333

3434
NAME = NotImplemented

src/ewoks/_requirements/managers/utils/detect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def _detect_manager() -> Optional[BaseManager]:
6666
# Infer most likely package manager
6767
counts = _installer_distribution_count()
6868
if set(counts) & set(available_managers):
69-
# Use the number of installed distibutions as the score
69+
# Use the number of installed distributions as the score
7070
crit = "distribution count"
7171
scores = {name: counts.get(name, -1) for name in available_managers}
7272
else:

0 commit comments

Comments
 (0)