Skip to content

Commit 41b624d

Browse files
committed
use doc comments
1 parent 0ee9cfd commit 41b624d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler/rustc_trait_selection/src/solve/search_graph.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ rustc_index::newtype_index! {
2222
struct StackEntry<'tcx> {
2323
input: CanonicalInput<'tcx>,
2424
available_depth: Limit,
25-
// The maximum depth reached by this stack entry, only up-to date
26-
// for the top of the stack and lazily updated for the rest.
25+
/// The maximum depth reached by this stack entry, only up-to date
26+
/// for the top of the stack and lazily updated for the rest.
2727
reached_depth: StackDepth,
28-
// In case of a cycle, the depth of the root.
28+
/// In case of a cycle, the depth of the root.
2929
cycle_root_depth: StackDepth,
3030

3131
encountered_overflow: bool,

0 commit comments

Comments
 (0)