Skip to content

Commit 6641415

Browse files
committed
do not use doc comments inside functions
1 parent 29ed317 commit 6641415

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_mir/transform/add_validation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl MirPass for AddValidation {
9191

9292
let local_decls = mir.local_decls.clone(); // FIXME: Find a way to get rid of this clone.
9393

94-
/// Convert an lvalue to a validation operand.
94+
// Convert an lvalue to a validation operand.
9595
let lval_to_operand = |lval: Lvalue<'tcx>| -> ValidationOperand<'tcx, Lvalue<'tcx>> {
9696
let (re, mutbl) = lval_context(&lval, &local_decls, tcx);
9797
let ty = lval.ty(&local_decls, tcx).to_ty(tcx);

0 commit comments

Comments
 (0)