Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix simple typo, timetamps -> timestamps #784

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
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/dyn_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ struct msg *req_recv_next(struct context *ctx, struct conn *conn, bool alloc) {
conn->rmsg = req;
}

// Record timetamps if repairs are enabled.
// Record timestamps if repairs are enabled.
if (is_read_repairs_enabled()) {
req->timestamp = current_timestamp_in_millis();
}
Expand Down
2 changes: 1 addition & 1 deletion src/dyn_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ struct msg *rsp_recv_next(struct context *ctx, struct conn *conn, bool alloc) {
conn->rmsg = rsp;
}

// Record timetamps if repairs are enabled.
// Record timestamps if repairs are enabled.
// TODO: Consider requests that span multiple mbufs.
if (is_read_repairs_enabled()) {
rsp->timestamp = current_timestamp_in_millis();
Expand Down
2 changes: 1 addition & 1 deletion src/proto/dyn_redis_repair.c
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ static rstatus_t finalize_repair_msg(struct context *ctx, struct conn *conn,
}

/*
* Finds all the timetamps from responses in rspmgr, updates the respective 'msg'
* Finds all the timestamps from responses in rspmgr, updates the respective 'msg'
* structures with their timestamp, and finds the response that has the latest
* timestamp.
*
Expand Down