Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Apr 18, 2024
1 parent 732ab30 commit 506c27b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/re_query_cache2/src/range/results.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ impl<'a, T> CachedRangeData<'a, T> {
/// Returns the index range that corresponds to the specified `time_range`.
///
/// Use the returned range with one of the range iteration methods:
/// - [`Self::indices`]
/// - [`Self::data`]
/// - [`Self::range_indices`]
/// - [`Self::range_data`]
/// - [`Self::range_indexed`]
///
/// Make sure that the bucket hasn't been modified in-between!
Expand Down Expand Up @@ -291,7 +291,7 @@ impl CachedRangeComponentResults {
None
} else {
// The lock is busy, but it is not held by the current thread.
// Just block untils it gets released.
// Just block until it gets released.
Some(self.0.write())
}
})
Expand Down Expand Up @@ -511,7 +511,7 @@ impl CachedRangeComponentResults {
None
} else {
// The lock is busy, but it is not held by the current thread.
// Just block untils it gets released.
// Just block until it gets released.
Some(self.0.write())
}
})
Expand Down

0 comments on commit 506c27b

Please sign in to comment.