Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/v/datalake/serde_parquet_writer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ss::future<writer_error> serde_parquet_writer::add_data_struct(
// Hence, the current solution is to return those errors on the subsequent
// call to `add_data_struct`.
//
// Similar to `local_parquet_file_writer` once an error has occured further
// Similar to `local_parquet_file_writer` once an error has occurred further
// writes are prevented.
if (_error != writer_error::ok) {
co_return _error;
Expand Down
2 changes: 1 addition & 1 deletion src/v/http/client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ ss::future<reconnect_result_t> client::get_connected(
// Reconnect attempts have to stop if:
// - shutdown method was called
// - abort was requested
// - unrecoverable error occured
// - unrecoverable error occurred
// - timeout reached
try {
// base_transport::connect calls _dispatcher_gate.close
Expand Down
2 changes: 1 addition & 1 deletion src/v/storage/segment_set.cc
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ static ss::future<segment_set> do_recover(
/**
* \brief Open all segments in a directory.
*
* Returns an exceptional future if any error occured opening a
* Returns an exceptional future if any error occurred opening a
* segment. Otherwise all open segment readers are returned.
*/
static ss::future<segment_set::underlying_t> open_segments(
Expand Down
2 changes: 1 addition & 1 deletion src/v/wasm/wasi.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ struct event_t {
errno_t error;

/**
* The type of event that occured
* The type of event that occurred
*/
event_type_t type;

Expand Down
Loading