fix typo in comments under torch/csrc/distributed (#96062)

This PR fixes typos in comments and messages of `.cpp` and `.hpp` files under `torch/csrc/distributed` directory

Pull Request resolved: https://github.com/pytorch/pytorch/pull/96062
Approved by: https://github.com/ngimel
This commit is contained in:
Kazuaki Ishizaki
2023-03-07 02:56:41 +00:00
committed by PyTorch MergeBot
parent fe4fec37a4
commit 2973994259
22 changed files with 32 additions and 32 deletions

View File

@ -178,7 +178,7 @@ void RpcAgent::retryExpiredRpcs() {
}
// If there are no more RPC's set to be retried at the current timepoint,
// we can remove the corresponsing unordered_set from the retry map.
// we can remove the corresponding unordered_set from the retry map.
if (earliestRpcList.empty()) {
rpcRetryMap_.erase(earliestTimeout);
}