Skip to content

Commit f0275d4

Browse files
committed
Kernel - Fix some cargo doc issues
1 parent 363db1e commit f0275d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Kernel/Core/lib/sparse_vec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use core::ops;
99

1010
/// Sparse vector type
1111
///
12-
/// A wrapper around Vec<Option<T>> for use as a resource pool
12+
/// A wrapper around `Vec<Option<T>>` for use as a resource pool
1313
pub struct SparseVec<T>
1414
{
1515
data: Vec<Option<T>>,

Kernel/Modules/shared_map/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Modules/shared_map/lib.rs
55
//! A key-value map that internally handles synchronisation
66
//!
7-
//! A wrapper around RwLock<VecMap>
7+
//! A wrapper around `RwLock<VecMap>`
88
#![no_std]
99
use ::kernel::sync::rwlock::{RwLock, self};
1010
use ::kernel::lib::collections::VecMap;

0 commit comments

Comments
 (0)