Skip to content

Commit d5218be

Browse files
committed
Fix docs build
1 parent 82f2d9c commit d5218be

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

aarch32-cpu/src/register/dfsr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ pub enum DfsrStatus {
134134
Debug = 0b00010,
135135
/// Access Flag fault on Section
136136
AccessFlagFaultFirstLevel = 0b00011,
137-
/// Cache maintenance operation fault[2]
137+
/// Cache maintenance operation fault
138138
CacheMaintenance = 0b00100,
139139
/// Translation fault on Section
140140
TranslationFaultFirstLevel = 0b00101,

aarch32-rt-macros/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ version = "0.3.0"
1616

1717
[lib]
1818
proc-macro = true
19+
doc = false
1920

2021
[dependencies]
2122
quote = "1.0"

aarch32-rt/src/sections.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,13 @@ impl Section {
120120
}
121121
}
122122

123-
/// Iterator over all the [`Region`] variants
123+
/// Iterator over all the [`Section`] variants
124124
pub struct SectionIter {
125125
next: Option<Section>,
126126
}
127127

128128
impl SectionIter {
129-
/// Create a new [`RegionIter`]
129+
/// Create a new [`SectionIter`]
130130
pub fn new() -> Self {
131131
Self {
132132
next: Some(Section::VectorTable),

0 commit comments

Comments
 (0)