From 1ce8c6692d982ae09d1e0506040ddaf2526582d9 Mon Sep 17 00:00:00 2001 From: Diptorup Deb Date: Thu, 21 Sep 2023 17:58:55 -0500 Subject: [PATCH] Fix typo in docstring --- numba_dpex/core/codegen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numba_dpex/core/codegen.py b/numba_dpex/core/codegen.py index 2803009050..11e22418fe 100644 --- a/numba_dpex/core/codegen.py +++ b/numba_dpex/core/codegen.py @@ -81,7 +81,7 @@ def _init(self, llvm_module): self._data_layout = SPIR_DATA_LAYOUT[utils.MACHINE_BITS] self._target_data = ll.create_target_data(self._data_layout) self._tm_features = ( - "" # We need this for chaching, not sure about this value for now + "" # We need this for caching, not sure about this value for now ) def _create_empty_module(self, name):