Skip to content

Commit

Permalink
cloud_storage: fix code comment typo
Browse files Browse the repository at this point in the history
(cherry picked from commit 8ad8459)
  • Loading branch information
nvartolomei authored and vbotbuildovich committed Jun 12, 2024
1 parent 0f283a7 commit 753c5f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v/cloud_storage/recursive_directory_walker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 753c5f2

Please sign in to comment.