diff --git a/core/cu29_runtime/src/pool.rs b/core/cu29_runtime/src/pool.rs index e9e9a37ab..d345b98d2 100644 --- a/core/cu29_runtime/src/pool.rs +++ b/core/cu29_runtime/src/pool.rs @@ -202,7 +202,7 @@ pub trait DeviceCuPool: CuPool { /// A pool of host memory buffers. pub struct CuHostMemoryPool { /// Underlying pool of host buffers. - // Beeing an Arc is a requirement of try_pull_owned() so buffers can refer back to the pool. + // Being an Arc is a requirement of try_pull_owned() so buffers can refer back to the pool. id: PoolID, pool: Arc>, size: usize,