From 753c5f26b2a3a269552c89bd454629c8e98deeb4 Mon Sep 17 00:00:00 2001 From: Nicolae Vartolomei Date: Wed, 5 Jun 2024 13:49:37 +0100 Subject: [PATCH] cloud_storage: fix code comment typo (cherry picked from commit 8ad84596cd78f645bcc16edb84a455e540103112) --- src/v/cloud_storage/recursive_directory_walker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v/cloud_storage/recursive_directory_walker.cc b/src/v/cloud_storage/recursive_directory_walker.cc index 0035fe265efaa..37355ad863af9 100644 --- a/src/v/cloud_storage/recursive_directory_walker.cc +++ b/src/v/cloud_storage/recursive_directory_walker.cc @@ -112,7 +112,7 @@ ss::future<> walker_process_directory( } } catch (std::filesystem::filesystem_error& e) { if (e.code() == std::errc::no_such_file_or_directory) { - // skip this directory, move to the ext one + // skip this directory, move to the next one } else { throw; }