From 9ec9886b04b1388c3996d11e516cda6cc6052dba Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 30 Sep 2021 19:57:52 -0400 Subject: [PATCH] Meta: Fix typos --- Meta/CMake/serenity_components.cmake | 2 +- .../Tools/CodeGenerators/LibUnicode/GenerateUnicodeData.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Meta/CMake/serenity_components.cmake b/Meta/CMake/serenity_components.cmake index d2b5d475a0..579296ff75 100644 --- a/Meta/CMake/serenity_components.cmake +++ b/Meta/CMake/serenity_components.cmake @@ -44,7 +44,7 @@ function(export_components_helper file_name current_dir) foreach(target IN LISTS targets) get_target_property(type "${target}" TYPE) if (type STREQUAL "INTERFACE_LIBRARY") - continue() # Custom properties are not allowed to be set on INTERFACE libaries + continue() # Custom properties are not allowed to be set on INTERFACE libraries endif() get_target_property(component_name "${target}" SERENITY_COMPONENT_NAME) if(NOT "${component_name}" STREQUAL "") diff --git a/Meta/Lagom/Tools/CodeGenerators/LibUnicode/GenerateUnicodeData.cpp b/Meta/Lagom/Tools/CodeGenerators/LibUnicode/GenerateUnicodeData.cpp index 7b4435df46..d02523b47c 100644 --- a/Meta/Lagom/Tools/CodeGenerators/LibUnicode/GenerateUnicodeData.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/LibUnicode/GenerateUnicodeData.cpp @@ -951,7 +951,7 @@ static void normalize_script_extensions(PropList& script_extensions, PropList co // Lastly, the Common and Inherited script extensions are special. They must not contain any // code points which appear in other script extensions. The ScriptExtensions UCD file does not - // list these extensions, therefore this peculiarity must be handled programatically. + // list these extensions, therefore this peculiarity must be handled programmatically. // https://www.unicode.org/reports/tr24/#Assignment_ScriptX_Values auto code_point_has_other_extension = [&](StringView key, u32 code_point) { for (auto const& extension : extensions) {