From ac170b100e13f81543d8512d2b0b1c70d4217596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20Ochagav=C3=ADa?= Date: Mon, 28 Apr 2014 15:39:11 +0200 Subject: [PATCH] Fixed typo in std::vec --- src/libstd/vec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/vec.rs b/src/libstd/vec.rs index c5f3206d9d5..aeb1bf555e8 100644 --- a/src/libstd/vec.rs +++ b/src/libstd/vec.rs @@ -1288,7 +1288,7 @@ impl Vec { // +---+---+---+---+---+---+ // w // - // Comparing self[r] against self[w-1], tis is not a duplicate, so + // Comparing self[r] against self[w-1], this is not a duplicate, so // we swap self[r] and self[w] (no effect as r==w) and then increment both // r and w, leaving us with: //