From 44fb0eb12f07b08af8b11db4e4a0a9929f168114 Mon Sep 17 00:00:00 2001 From: luz paz Date: Wed, 13 Apr 2022 08:40:23 -0400 Subject: [PATCH] Fix typos Found via `codespell -q 3` Reverted test/lua changes and other upstream code. --- src/CMakeLists.txt | 4 ++-- test/pkg/CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 96a52f4cc..c921dd95d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -41,10 +41,10 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") # Current version. # # TINYSPLINE_SUMMARY -# Short describtion. +# Short description. # # TINYSPLINE_DESCRIPTION -# Long describtion. +# Long description. ############################################################################### set(TINYSPLINE_PACKAGE_NAME "tinyspline" diff --git a/test/pkg/CMakeLists.txt b/test/pkg/CMakeLists.txt index d91e7a850..f03d5878c 100644 --- a/test/pkg/CMakeLists.txt +++ b/test/pkg/CMakeLists.txt @@ -15,7 +15,7 @@ function(check_directories list_of_dirs) return() endif() if(NOT IS_DIRECTORY ${dir}) - message(SEND_ERROR "'${dir}' is not a dirctory") + message(SEND_ERROR "'${dir}' is not a directory") endif() endforeach() endfunction()