From 50b6dd43e2acb72cffd061b9031ef3ce28b09a29 Mon Sep 17 00:00:00 2001 From: Luis de Bethencourt Date: Fri, 5 May 2017 17:51:57 +0100 Subject: [PATCH] fix typo in eval_order_dependence.rs Fixing a "the the" to "the". --- clippy_lints/src/eval_order_dependence.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/clippy_lints/src/eval_order_dependence.rs b/clippy_lints/src/eval_order_dependence.rs index f07ec7de52b2..2e8917598891 100644 --- a/clippy_lints/src/eval_order_dependence.rs +++ b/clippy_lints/src/eval_order_dependence.rs @@ -160,9 +160,8 @@ impl<'a, 'tcx> Visitor<'tcx> for DivergenceVisitor<'a, 'tcx> { } } -/// Walks up the AST from the the given write expression (`vis.write_expr`) -/// looking for reads to the same variable that are unsequenced relative to the -/// write. +/// Walks up the AST from the given write expression (`vis.write_expr`) looking +/// for reads to the same variable that are unsequenced relative to the write. /// /// This means reads for which there is a common ancestor between the read and /// the write such that