@@ -26,7 +26,7 @@ pub(crate) enum ItemKind {
26
26
}
27
27
28
28
impl ItemKind {
29
- /// Get a reference to this `ItemKind`'s underying `Module`, or `None` if it
29
+ /// Get a reference to this `ItemKind`'s underlying `Module`, or `None` if it
30
30
/// is some other kind.
31
31
pub ( crate ) fn as_module ( & self ) -> Option < & Module > {
32
32
match * self {
@@ -50,7 +50,7 @@ impl ItemKind {
50
50
self . as_module ( ) . is_some ( )
51
51
}
52
52
53
- /// Get a reference to this `ItemKind`'s underying `Function`, or `None` if
53
+ /// Get a reference to this `ItemKind`'s underlying `Function`, or `None` if
54
54
/// it is some other kind.
55
55
pub ( crate ) fn as_function ( & self ) -> Option < & Function > {
56
56
match * self {
@@ -64,13 +64,13 @@ impl ItemKind {
64
64
self . as_function ( ) . is_some ( )
65
65
}
66
66
67
- /// Get a reference to this `ItemKind`'s underying `Function`, or panic if
67
+ /// Get a reference to this `ItemKind`'s underlying `Function`, or panic if
68
68
/// it is some other kind.
69
69
pub ( crate ) fn expect_function ( & self ) -> & Function {
70
70
self . as_function ( ) . expect ( "Not a function" )
71
71
}
72
72
73
- /// Get a reference to this `ItemKind`'s underying `Type`, or `None` if
73
+ /// Get a reference to this `ItemKind`'s underlying `Type`, or `None` if
74
74
/// it is some other kind.
75
75
pub ( crate ) fn as_type ( & self ) -> Option < & Type > {
76
76
match * self {
@@ -79,7 +79,7 @@ impl ItemKind {
79
79
}
80
80
}
81
81
82
- /// Get a mutable reference to this `ItemKind`'s underying `Type`, or `None`
82
+ /// Get a mutable reference to this `ItemKind`'s underlying `Type`, or `None`
83
83
/// if it is some other kind.
84
84
pub ( crate ) fn as_type_mut ( & mut self ) -> Option < & mut Type > {
85
85
match * self {
@@ -93,13 +93,13 @@ impl ItemKind {
93
93
self . as_type ( ) . is_some ( )
94
94
}
95
95
96
- /// Get a reference to this `ItemKind`'s underying `Type`, or panic if it is
96
+ /// Get a reference to this `ItemKind`'s underlying `Type`, or panic if it is
97
97
/// some other kind.
98
98
pub ( crate ) fn expect_type ( & self ) -> & Type {
99
99
self . as_type ( ) . expect ( "Not a type" )
100
100
}
101
101
102
- /// Get a reference to this `ItemKind`'s underying `Var`, or `None` if it is
102
+ /// Get a reference to this `ItemKind`'s underlying `Var`, or `None` if it is
103
103
/// some other kind.
104
104
pub ( crate ) fn as_var ( & self ) -> Option < & Var > {
105
105
match * self {
0 commit comments