From 95c5d6c8be64634d9bf408ef9679003e6b6f0220 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 9 Sep 2023 12:04:49 -0700 Subject: [PATCH] Fix documentation typo from PR 1069 --- src/value/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/value/mod.rs b/src/value/mod.rs index d109747e4..a565b2998 100644 --- a/src/value/mod.rs +++ b/src/value/mod.rs @@ -514,7 +514,7 @@ impl Value { } } - /// If the `Value` is an Number, returns the associated [`Number`]. Returns + /// If the `Value` is a Number, returns the associated [`Number`]. Returns /// None otherwise. /// /// ```