Skip to content
This repository was archived by the owner on Jan 25, 2023. It is now read-only.

Commit 44cdb40

Browse files
committed
Remove the misspelling of finalize_dynamic_globals
This commit fixes misspelling of _finalize_dynamic_globals(). This function is used only in the same file.
1 parent ca17991 commit 44cdb40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numba/core/codegen.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def finalize(self):
247247
self._final_module.verify()
248248
self._finalize_final_module()
249249

250-
def _finalize_dyanmic_globals(self):
250+
def _finalize_dynamic_globals(self):
251251
# Scan for dynamic globals
252252
for gv in self._final_module.global_variables:
253253
if gv.name.startswith('numba.dynamic.globals'):
@@ -265,7 +265,7 @@ def _finalize_final_module(self):
265265
"""
266266
Make the underlying LLVM module ready to use.
267267
"""
268-
self._finalize_dyanmic_globals()
268+
self._finalize_dynamic_globals()
269269
self._verify_declare_only_symbols()
270270

271271
# Remember this on the module, for the object cache hooks

0 commit comments

Comments
 (0)