File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 13
13
permissions :
14
14
contents : read
15
15
16
+ env :
17
+ RUSTDOCFLAGS : -Dwarnings
18
+
16
19
jobs :
17
20
stable :
18
21
name : " Test MSRV and Stable Features"
Original file line number Diff line number Diff line change @@ -671,7 +671,7 @@ impl_index_for_idt!(RangeFull);
671
671
672
672
/// An Interrupt Descriptor Table entry.
673
673
///
674
- /// The generic parameter is some [`InterruptFn `], depending on the interrupt vector.
674
+ /// The generic parameter is some [`HandlerFuncType `], depending on the interrupt vector.
675
675
#[ derive( Clone , Copy ) ]
676
676
#[ repr( C ) ]
677
677
pub struct Entry < F > {
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ impl<'a> RecursivePageTable<'a> {
54
54
/// because allocating the last byte of the address space can lead to pointer
55
55
/// overflows and undefined behavior. For more details, see the discussions
56
56
/// [on Zulip](https://rust-lang.zulipchat.com/#narrow/stream/136281-t-opsem/topic/end-of-address-space)
57
- /// and [in the `unsafe-code-guidelines ` repo]https://github.com/rust-lang/unsafe-code-guidelines/issues/420).
57
+ /// and [in the `unsafe-code-guidelines ` repo]( https://github.com/rust-lang/unsafe-code-guidelines/issues/420).
58
58
#[ inline]
59
59
pub fn new ( table : & ' a mut PageTable ) -> Result < Self , InvalidPageTable > {
60
60
let page = Page :: containing_address ( VirtAddr :: new ( table as * const _ as u64 ) ) ;
You can’t perform that action at this time.
0 commit comments