Skip to content

Commit

Permalink
fix typo (#4555)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqiangxu committed Aug 2, 2023
1 parent ff9b09d commit fcf51d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon_node/beacon_chain/src/timeout_rw_lock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::time::Duration;
/// A simple wrapper around `parking_lot::RwLock` that only permits read/write access with a
/// time-out (i.e., no indefinitely-blocking operations).
///
/// Timeouts can be optionally be disabled at runtime for all instances of this type by calling
/// Timeouts can be optionally disabled at runtime for all instances of this type by calling
/// `TimeoutRwLock::disable_timeouts()`.
pub struct TimeoutRwLock<T>(RwLock<T>);

Expand Down

0 comments on commit fcf51d6

Please sign in to comment.