From cf3eb87e52a8de54c0e7e9b8d3c6d74d7b16b977 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Fri, 1 Mar 2024 15:23:46 +0900 Subject: [PATCH] Fix typo in transforms.cpp (#764) occuring -> occurring --- python/src/transforms.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/transforms.cpp b/python/src/transforms.cpp index 997261c36..1612f774d 100644 --- a/python/src/transforms.cpp +++ b/python/src/transforms.cpp @@ -351,7 +351,7 @@ struct PyCompiledFun { // Reserve some large primes to signify the presence of an array, a list or // a dict in order to encode the structure of the pytree. We choose primes - // to reduce slightly the chances of these numbers occuring by a + // to reduce slightly the chances of these numbers occurring by a // multiplication as values in the constants list. constexpr uint64_t array_identifier = 18446744073709551557UL; constexpr uint64_t list_identifier = 18446744073709551533UL;