We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cargo doc
1 parent 363db1e commit f0275d4Copy full SHA for f0275d4
Kernel/Core/lib/sparse_vec.rs
@@ -9,7 +9,7 @@ use core::ops;
9
10
/// Sparse vector type
11
///
12
-/// A wrapper around Vec<Option<T>> for use as a resource pool
+/// A wrapper around `Vec<Option<T>>` for use as a resource pool
13
pub struct SparseVec<T>
14
{
15
data: Vec<Option<T>>,
Kernel/Modules/shared_map/lib.rs
@@ -4,7 +4,7 @@
4
// Modules/shared_map/lib.rs
5
//! A key-value map that internally handles synchronisation
6
//!
7
-//! A wrapper around RwLock<VecMap>
+//! A wrapper around `RwLock<VecMap>`
8
#![no_std]
use ::kernel::sync::rwlock::{RwLock, self};
use ::kernel::lib::collections::VecMap;
0 commit comments