Skip to content

Commit 77a3269

Browse files
committed
Fix typo.
1 parent 4758bd0 commit 77a3269

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

django_mongodb/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
check_django_compatability()
88

99
from .expressions import register_expressions # noqa: E402
10-
from .functions import register_functinos # noqa: E402
10+
from .functions import register_functions # noqa: E402
1111
from .lookups import register_lookups # noqa: E402
1212

1313
register_expressions()
14-
register_functinos()
14+
register_functions()
1515
register_lookups()

django_mongodb/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ def extract(self, compiler, connection):
1818
return {operator: f"${lhs_mql}"}
1919

2020

21-
def register_functinos():
21+
def register_functions():
2222
Extract.as_mql = extract

0 commit comments

Comments
 (0)