From 0bb1669810587dac2e7309245bd7ef552416b3a9 Mon Sep 17 00:00:00 2001 From: "Mads R. B. Kristensen" Date: Mon, 4 Sep 2023 14:44:07 +0200 Subject: [PATCH] doc --- cpp/include/kvikio/stream.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/include/kvikio/stream.hpp b/cpp/include/kvikio/stream.hpp index 74ee1f6960..f38cbe2592 100644 --- a/cpp/include/kvikio/stream.hpp +++ b/cpp/include/kvikio/stream.hpp @@ -31,7 +31,7 @@ namespace kvikio { * This class shouldn't be used directly, instead some stream operations such as * `FileHandle.read_async` and `FileHandle.write_async` returns an instance of this class. Use * `.check_bytes_done()` to synchronize the associated CUDA stream and return the number of bytes - * precessed by the operation. + * read or written by the operation. */ class StreamFuture { public: @@ -117,7 +117,7 @@ class StreamFuture { } /** - * @brief Return the number of bytes precessed by the future operation. + * @brief Return the number of bytes read or written by the future operation. * * Synchronize the associated CUDA stream. *