File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Checks that are performed to configuration options.
1010Common 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 )
1616Utility functions for endpoint handlers.
Original file line number Diff line number Diff line change 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
33from typing import Any , Callable
44
55
66def 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
You can’t perform that action at this time.
0 commit comments