File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ version = "0.3.0"
1616
1717[lib ]
1818proc-macro = true
19+ doc = false
1920
2021[dependencies ]
2122quote = " 1.0"
Original file line number Diff line number Diff 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
124124pub struct SectionIter {
125125 next : Option < Section > ,
126126}
127127
128128impl SectionIter {
129- /// Create a new [`RegionIter `]
129+ /// Create a new [`SectionIter `]
130130 pub fn new ( ) -> Self {
131131 Self {
132132 next : Some ( Section :: VectorTable ) ,
You can’t perform that action at this time.
0 commit comments