From 9c2726ad5d2917cc5e1b963ffc796b8d19a99ee7 Mon Sep 17 00:00:00 2001 From: Grant Powell Date: Mon, 25 Oct 2021 10:59:11 -0400 Subject: [PATCH] Fix a typo in the docs ("\`true" => "\`true\`") --- src/vector/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vector/mod.rs b/src/vector/mod.rs index 47893a9..29364e8 100644 --- a/src/vector/mod.rs +++ b/src/vector/mod.rs @@ -673,7 +673,7 @@ impl Vector { /// Test if a given element is in the vector. /// /// Searches the vector for the first occurrence of a given value, - /// and returns `true if it's there. If it's nowhere to be found + /// and returns `true` if it's there. If it's nowhere to be found /// in the vector, it returns `false`. /// /// Time: O(n)