diff options
| author | Carol (Nichols || Goulding) <carol.nichols@gmail.com> | 2018-01-12 16:41:25 -0500 |
|---|---|---|
| committer | Carol (Nichols || Goulding) <carol.nichols@gmail.com> | 2018-01-15 13:36:53 -0500 |
| commit | e168aa385b9afb6c84071a09910724bdde3dfc5f (patch) | |
| tree | 550d6318fb18091ea7959bd550bdf1f646b1137f /src/librustc_metadata | |
| parent | 90fcd4476c6346fad0aa4a952da0ebec39ff9d4e (diff) | |
| download | rust-e168aa385b9afb6c84071a09910724bdde3dfc5f.tar.gz rust-e168aa385b9afb6c84071a09910724bdde3dfc5f.zip | |
Reexport -> re-export in prose and documentation comments
Diffstat (limited to 'src/librustc_metadata')
| -rw-r--r-- | src/librustc_metadata/decoder.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_metadata/decoder.rs b/src/librustc_metadata/decoder.rs index bd63396cd35..06728b2e625 100644 --- a/src/librustc_metadata/decoder.rs +++ b/src/librustc_metadata/decoder.rs @@ -702,8 +702,8 @@ impl<'a, 'tcx> CrateMetadata { let vis = self.get_visibility(child_index); let is_import = false; callback(def::Export { def, ident, vis, span, is_import }); - // For non-reexport structs and variants add their constructors to children. - // Reexport lists automatically contain constructors when necessary. + // For non-re-export structs and variants add their constructors to children. + // Re-export lists automatically contain constructors when necessary. match def { Def::Struct(..) => { if let Some(ctor_def_id) = self.get_struct_ctor_def_id(child_index) { |
