Skip to content

Commit 5cbe24a

Browse files
Fix clippy (#6421)
1 parent 2e86fd0 commit 5cbe24a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

utils/litemap/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

utils/litemap/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
//! * Insertion is generally `O(n)`, but optimized to `O(1)` if the new item sorts greater than the current items. In `BTreeMap` it's `O(log(n))`.
2828
//! * Deletion is `O(n)` whereas `BTreeMap` is `O(log(n))`.
2929
//! * Bulk operations like `from_iter`, `extend` and deserialization have an optimized `O(n)` path
30-
//! for inputs that are ordered and `O(n*log(n))` complexity otherwise.
30+
//! for inputs that are ordered and `O(n*log(n))` complexity otherwise.
3131
//!
3232
//! ## Pluggable Backends
3333
//!

0 commit comments

Comments
 (0)