Skip to content

Commit

Permalink
storage: fixed typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
delbonis committed Feb 2, 2025
1 parent 343d80b commit 848a8d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/storage/src/managers/client_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl ClientStateManager {

// Convenience functions.

/// Gets the higest known state and its idx.
/// Gets the highest known state and its idx.
pub async fn get_most_recent_state(&self) -> Option<(u64, Arc<ClientState>)> {
let cur = self.cur_state.lock().await;
cur.get_clone().map(|state| (cur.get_idx(), state))
Expand Down

0 comments on commit 848a8d9

Please sign in to comment.