Fix typo in test from rename

This commit is contained in:
Jade Ellis 2024-12-17 19:29:46 +00:00
parent 9ec35cf684
commit 5b6ff3869c
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2

View file

@ -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";
/// ```