From 3bff2b9f33f539719d08cd4a8864b38466af75bc Mon Sep 17 00:00:00 2001 From: Federico Cecchetto Date: Sun, 12 Jun 2022 02:50:15 +0200 Subject: [PATCH] Actually 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 fc9383a..5df6155 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::starts_swith", utils::string::starts_with); + gsc::function::add("string::starts_with", utils::string::starts_with); gsc::function::add("string::ends_with", utils::string::ends_with); gsc::function::add("string::replace", utils::string::replace);