diff options
Diffstat (limited to 'crates/arti-rpc-client-core')
| -rw-r--r-- | crates/arti-rpc-client-core/src/conn/connimpl.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/arti-rpc-client-core/src/conn/connimpl.rs b/crates/arti-rpc-client-core/src/conn/connimpl.rs index e5f45ac4b..025318b25 100644 --- a/crates/arti-rpc-client-core/src/conn/connimpl.rs +++ b/crates/arti-rpc-client-core/src/conn/connimpl.rs @@ -269,7 +269,7 @@ impl Receiver { ) -> Result<ValidatedResponse, ProtoError> { // Here in wait_on_message_for_impl, we do the the actual work // of waiting for the message. - let state = self.state.lock().expect("posioned"); + let state = self.state.lock().expect("poisoned"); let (result, mut state, should_alert) = self.wait_on_message_for_impl(state, id); // Great; we have a message or a fatal error. All we need to do now |
