diff --git a/cpp/src/neighbors/detail/dynamic_batching.cuh b/cpp/src/neighbors/detail/dynamic_batching.cuh index 2f51af029..cf386c5b2 100644 --- a/cpp/src/neighbors/detail/dynamic_batching.cuh +++ b/cpp/src/neighbors/detail/dynamic_batching.cuh @@ -224,7 +224,7 @@ struct batch_token { * * The CPU threads atomically increment this counter until its size reaches `max_batch_size`. * - * Any (CPU or GPU thread) my atomically write to the highest byte of this value, which indicates + * Any (CPU or GPU thread) may atomically write to the highest byte of this value, which indicates * that no one can commit to this batch anymore (e.g. the wait timeout is exceeded). * Hence, the actual number of committed queries is `size_committed % 0x00ffffff`. *