From c5179bf2017de57ddba9d542cc1b5714d4aa5424 Mon Sep 17 00:00:00 2001 From: Guillaume Binet Date: Mon, 20 Jan 2025 15:53:19 -0600 Subject: [PATCH] Typo :fp: --- core/cu29_runtime/src/pool.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,