From 1e5a163c65c059760346f6402107908b8fdaee67 Mon Sep 17 00:00:00 2001 From: Federico Cecchetto Date: Sun, 12 Jun 2022 02:47:41 +0200 Subject: [PATCH] Fix typo --- src/component/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/component/string.cpp b/src/component/string.cpp index 5b9d19c..fc9383a 100644 --- a/src/component/string.cpp +++ b/src/component/string.cpp @@ -183,7 +183,7 @@ namespace string gsc::function::add_multiple(utils::string::to_lower, "tolower", "string::to_lower"); gsc::function::add("string::is_numeric", utils::string::is_numeric); - gsc::function::add("string::start_swith", utils::string::starts_with); + gsc::function::add("string::starts_swith", utils::string::starts_with); gsc::function::add("string::ends_with", utils::string::ends_with); gsc::function::add("string::replace", utils::string::replace);