Skip to content

Commit

Permalink
Merge pull request #767 from shmutalov/patch-5
Browse files Browse the repository at this point in the history
Typos
  • Loading branch information
or-else authored Jun 22, 2022
2 parents a54cbfe + d73a9de commit 605bd27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/datamodel.go
Original file line number Diff line number Diff line change
Expand Up @@ -924,12 +924,12 @@ func NoErrCreated(id, topic string, ts time.Time) *ServerComMessage {
}
}

// NoErrAccepted indicates request was accepted but not perocessed yet (202).
// NoErrAccepted indicates request was accepted but not processed yet (202).
func NoErrAccepted(id, topic string, ts time.Time) *ServerComMessage {
return NoErrAcceptedExplicitTs(id, topic, ts, ts)
}

// NoErrAcceptedExplicitTs indicates request was accepted but not perocessed yet
// NoErrAcceptedExplicitTs indicates request was accepted but not processed yet
// with explicit server and incoming request timestamps (202).
func NoErrAcceptedExplicitTs(id, topic string, serverTs, incomingReqTs time.Time) *ServerComMessage {
return &ServerComMessage{
Expand Down

0 comments on commit 605bd27

Please sign in to comment.