From 5fd700307682552e60fed5075a926da27710c6c6 Mon Sep 17 00:00:00 2001 From: Thomas Newton Date: Wed, 6 Dec 2023 08:56:09 +0000 Subject: [PATCH] Lint --- cpp/src/arrow/io/caching.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpp/src/arrow/io/caching.h b/cpp/src/arrow/io/caching.h index 385464d789e4d..99b4416505077 100644 --- a/cpp/src/arrow/io/caching.h +++ b/cpp/src/arrow/io/caching.h @@ -41,11 +41,11 @@ struct ARROW_EXPORT CacheOptions { /// combining two consecutive ranges would produce a range of a /// size greater than this, they are not combined int64_t range_size_limit; - /// \brief A lazy cache does not perform any I/O until requested. + /// \brief A lazy cache does not perform any I/O until requested. /// lazy = false: request all byte ranges when PreBuffer or WillNeed is called. - /// lazy = True, prefetch_limit = 0: request merged byte ranges only after the reader - /// needs them. - /// lazy = True, prefetch_limit = k: prefetch up to k merged byte ranges ahead of the + /// lazy = True, prefetch_limit = 0: request merged byte ranges only after the reader + /// needs them. + /// lazy = True, prefetch_limit = k: prefetch up to k merged byte ranges ahead of the /// range that is currently being read. bool lazy; /// \brief The maximum number of ranges to be prefetched. This is only used