Skip to content

Commit 0a3a2ee

Browse files
committed
Long lines
1 parent f459acc commit 0a3a2ee

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/librustc/middle/resolve.rs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,16 +141,16 @@ enum Namespace {
141141
ValueNS
142142
}
143143

144-
/// A NamespaceResult represents the result of resolving an import in a
145-
/// particular namespace. The result is either definitely-resolved, definitely-
146-
/// unresolved, or unknown.
144+
/// A NamespaceResult represents the result of resolving an import in
145+
/// a particular namespace. The result is either definitely-resolved,
146+
/// definitely- unresolved, or unknown.
147147
enum NamespaceResult {
148148
/// Means that resolve hasn't gathered enough information yet to determine
149149
/// whether the name is bound in this namespace. (That is, it hasn't
150150
/// resolved all `use` directives yet.)
151151
UnknownResult,
152-
/// Means that resolve has determined that the name is definitely not bound in
153-
/// the namespace.
152+
/// Means that resolve has determined that the name is definitely
153+
/// not bound in the namespace.
154154
UnboundResult,
155155
/// Means that resolve has determined that the name is bound in the Module
156156
/// argument, and specified by the NameBindings argument.
@@ -1205,7 +1205,8 @@ impl Resolver {
12051205
self.build_reduced_graph_for_variant(*variant,
12061206
local_def(item.id),
12071207
// inherited => privacy of the enum item
1208-
self.visibility_to_privacy(variant.node.vis, privacy == Public),
1208+
self.visibility_to_privacy(variant.node.vis,
1209+
privacy == Public),
12091210
new_parent, visitor);
12101211
}
12111212
}

0 commit comments

Comments
 (0)