Skip to content

Commit 27bff8d

Browse files
committed
Fixed typo
1 parent 637589b commit 27bff8d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/utils/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Checks that are performed to configuration options.
1010
Common utilities for the project.
1111

1212
## [connection_decorator.py](connection_decorator.py)
13-
Decocator that makes sure the object is 'connected' according to it's connected predicate.
13+
Decorator that makes sure the object is 'connected' according to it's connected predicate.
1414

1515
## [endpoints.py](endpoints.py)
1616
Utility functions for endpoint handlers.

src/utils/connection_decorator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
"""Decocator that makes sure the object is 'connected' according to it's connected predicate."""
1+
"""Decorator that makes sure the object is 'connected' according to it's connected predicate."""
22

33
from typing import Any, Callable
44

55

66
def connection(f: Callable) -> Callable:
7-
"""Decocator that makes sure the object is 'connected' according to it's connected predicate.
7+
"""Make decorator that makes sure the object is connected according to it's connected predicate.
88
99
Example:
1010
```python

0 commit comments

Comments
 (0)