File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ pub struct NodeCollector<'ast> {
28
28
pub map : Vec < MapEntry < ' ast > > ,
29
29
/// The definitions, used for name resolution
30
30
pub definitions : Definitions ,
31
- /// The parrent of this node
31
+ /// The parent of this node
32
32
pub parent_node : NodeId ,
33
33
}
34
34
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ use syntax::ast;
16
16
use syntax:: parse:: token:: InternedString ;
17
17
use util:: nodemap:: NodeMap ;
18
18
19
- /// A definition, that defines are
19
+ /// The definition table containing node definitions
20
20
#[ derive( Clone ) ]
21
21
pub struct Definitions {
22
22
data : Vec < DefData > ,
@@ -101,7 +101,7 @@ pub enum DefPathData {
101
101
/// A struct field
102
102
Field ( hir:: StructFieldKind ) ,
103
103
/// Implicit ctor for a tuple-like struct
104
- StructCtor ,
104
+ StructCtor ,
105
105
/// Initializer for a constant
106
106
Initializer ,
107
107
/// A pattern binding
You can’t perform that action at this time.
0 commit comments