From e787033ccaed968f06c27c3986ee030fad066783 Mon Sep 17 00:00:00 2001 From: Allan Regush Date: Tue, 2 Aug 2022 15:12:00 -0600 Subject: [PATCH] Fix Spelling Mistake in Error Message --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index a5e24bc6..8809f1f6 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -10,7 +10,7 @@ if(PROJECT_IS_TOP_LEVEL OR TEST_INSTALLED_VERSION) find_package(myproject CONFIG REQUIRED) # for intro, project_options, ... if(NOT TARGET myproject::project_options) - message(FATAL_ERROR "Requiered config package not found!") + message(FATAL_ERROR "Required config package not found!") return() # be strictly paranoid for Template Janitor github action! CK endif() endif()