This is an automated email from the ASF dual-hosted git repository.
tlopex pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 061b3486c0 fix: correct typo 'occuring' to 'occurring' (#18740)
061b3486c0 is described below
commit 061b3486c02127f306400161aa40edbf10a6473b
Author: thecaptain789 <[email protected]>
AuthorDate: Mon Feb 9 18:48:37 2026 +0000
fix: correct typo 'occuring' to 'occurring' (#18740)
Fixed typo in Python docstrings: 'occuring' to 'occurring'.
Co-authored-by: thecaptain789 <[email protected]>
---
python/tvm/tir/transform/transform.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/python/tvm/tir/transform/transform.py
b/python/tvm/tir/transform/transform.py
index bc33ab97e6..f7799ff2b5 100644
--- a/python/tvm/tir/transform/transform.py
+++ b/python/tvm/tir/transform/transform.py
@@ -671,10 +671,10 @@ class HoistedLetBindings(enum.Flag):
""" Bindings that are used by a hoisted conditional """
LetStmt = 2
- """ Bindings occuring in LetStmt """
+ """ Bindings occurring in LetStmt """
LetExpr = 4
- """ Bindings occuring in Let expressions """
+ """ Bindings occurring in Let expressions """
All = RequiredByConditional | LetStmt | LetExpr
""" Enable all hoisting of let bindings """