Skip to content

Commit ab193b9

Browse files
committed
rustc: Remove some comments from resolve3 that are being misparsed as attributes
1 parent e8e3fb2 commit ab193b9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/rustc/middle/resolve3.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -395,10 +395,10 @@ pure fn is_none<T>(x: option<T>) -> bool {
395395
bound to.
396396
"]
397397
class NameBindings {
398-
let mut module_def: ModuleDef; ///< Meaning in the module namespace.
399-
let mut type_def: option<def>; ///< Meaning in the type namespace.
400-
let mut value_def: option<def>; ///< Meaning in the value namespace.
401-
let mut impl_defs: ~[@Impl]; ///< Meaning in the impl namespace.
398+
let mut module_def: ModuleDef; //< Meaning in the module namespace.
399+
let mut type_def: option<def>; //< Meaning in the type namespace.
400+
let mut value_def: option<def>; //< Meaning in the value namespace.
401+
let mut impl_defs: ~[@Impl]; //< Meaning in the impl namespace.
402402

403403
new() {
404404
self.module_def = NoModuleDef;

0 commit comments

Comments
 (0)