Skip to content

Commit f8c95d2

Browse files
author
Gianmarco Garrisi
committed
Minor documentation improvements
1 parent 0c76fb8 commit f8c95d2

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/core_iterators.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
* obtain one at http://mozilla.org/MPL/2.0/.
2626
*
2727
*/
28-
//! This module defines iterator types that are used with
29-
//! both the [`PriorityQueue`](super::PriorityQueue) and the [`DoublePriorityQueue`](super::DoublePriorityQueue)
28+
//! Defines iterator types that are used with both the [`PriorityQueue`](super::PriorityQueue)
29+
//! and the [`DoublePriorityQueue`](super::DoublePriorityQueue)
3030
//!
3131
//! Usually you don't need to explicitly `use` any of the types declared here.
3232

src/double_priority_queue/iterators.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* obtain one at http://mozilla.org/MPL/2.0/.
2626
*
2727
*/
28-
//! This module defines iterator types that are used only with the [`DoublePriorityQueue`]
28+
//! Defines iterator types that are used only with the [`DoublePriorityQueue`]
2929
//!
3030
//! Usually you don't need to explicitly `use` any of the types declared here.
3131

src/double_priority_queue/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* obtain one at http://mozilla.org/MPL/2.0/.
2626
*
2727
*/
28-
//! This module contains the [`DoublePriorityQueue`] type and the related iterators.
28+
//! Contains the [`DoublePriorityQueue`] type and the related iterators.
2929
//!
3030
//! See the type level documentation for more details and examples.
3131

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
//! with the standard hasher `RandomState` using the `new` and `with_capacity`
103103
//! static methods.
104104
//! This feature is **enabled by default** and can be disabled when compiling
105-
//! for no_std targets.
105+
//! for no_std targets with cargo option `--no-default-features`.
106106
//! * **serde** - Enables serialization/deserialization using serde
107107
#![cfg_attr(not(feature = "std"), no_std)]
108108
#![cfg_attr(docsrs, feature(doc_cfg))]

src/priority_queue/iterators.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* obtain one at http://mozilla.org/MPL/2.0/.
2626
*
2727
*/
28-
//! This module defines iterator types that are used only with the [`PriorityQueue`].
28+
//! Defines iterator types that are used only with the [`PriorityQueue`].
2929
//!
3030
//! Usually you don't need to explicitly `use` any of the types declared here.
3131

src/priority_queue/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
*/
2828

29-
//! This module contains the [`PriorityQueue`] type and the related iterators.
29+
//! Contains the [`PriorityQueue`] type and the related iterators.
3030
//!
3131
//! See the type level documentation for more details and examples.
3232

0 commit comments

Comments
 (0)