From 5b6ff3869c118c4d5cde7b43c48f0b4be0d406ae Mon Sep 17 00:00:00 2001 From: Jade Ellis Date: Tue, 17 Dec 2024 19:29:46 +0000 Subject: [PATCH] Fix typo in test from rename --- src/core/utils/string.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/utils/string.rs b/src/core/utils/string.rs index 6baa9c35..cc692c14 100644 --- a/src/core/utils/string.rs +++ b/src/core/utils/string.rs @@ -84,7 +84,7 @@ where /// Find the common prefix from a collection of strings and return a slice /// ``` -/// use conduwiit_core::utils::string::common_prefix; +/// use conduwuit_core::utils::string::common_prefix; /// let input = ["conduwuit", "conduit", "construct"]; /// common_prefix(&input) == "con"; /// ```