From ea19bc83ebd34ff04c3fda56ca14b217a01a611b Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Thu, 19 Sep 2019 08:03:47 -0400 Subject: [PATCH] Fix typos Found via `codespell -q 3 -S ./lib*,*.ini -L aci,dur,iff,mut,numer,uint` --- CMakeLists.txt | 2 +- Doxyfile | 4 ++-- ftl_app/main.c | 2 +- ftl_app/main.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ef616e9..82e69f3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 2.8.0) enable_language(C) project(libftl) -option(DISABLE_AUTO_INGEST "Set to TRUE to disable auto ingest feature which removes curl and jansson dependancies" FALSE) +option(DISABLE_AUTO_INGEST "Set to TRUE to disable auto ingest feature which removes curl and jansson dependencies" FALSE) MESSAGE(STATUS "FTL DISABLE_AUTO_INGEST: " ${DISABLE_AUTO_INGEST}) option(DISABLE_FTL_APP "Set to TRUE to disable including the ftl app in the cmake output." FALSE) diff --git a/Doxyfile b/Doxyfile index faf2a4f..724d3f1 100644 --- a/Doxyfile +++ b/Doxyfile @@ -44,7 +44,7 @@ PROJECT_NUMBER = 0.1 # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. -PROJECT_BRIEF = "Source Developement Kit for Mixer's FTL Protocol" +PROJECT_BRIEF = "Source Development Kit for Mixer's FTL Protocol" # With the PROJECT_LOGO tag one can specify an logo or icon that is included in # the documentation. The maximum height of the logo should not exceed 55 pixels @@ -1947,7 +1947,7 @@ PREDEFINED = EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will -# remove all refrences to function-like macros that are alone on a line, have an +# remove all references to function-like macros that are alone on a line, have an # all uppercase name, and do not end with a semicolon. Such function macros are # typically used for boiler-plate code, and will confuse the parser if not # removed. diff --git a/ftl_app/main.c b/ftl_app/main.c index 7750e50..b304db2 100644 --- a/ftl_app/main.c +++ b/ftl_app/main.c @@ -394,7 +394,7 @@ static void *ftl_status_thread(void *data) continue; } - /*dont reconnect for speed test*/ + /*don't reconnect for speed test*/ if (speedtest_duration) { continue; } diff --git a/ftl_app/main.h b/ftl_app/main.h index 0a9bae8..1a73d44 100644 --- a/ftl_app/main.h +++ b/ftl_app/main.h @@ -33,7 +33,7 @@ * header definitions without it as the winsock 1.1 API is in windows.h vs * ws2_32.h. * - * Yay for backwards source compatability + * Yay for backwards source compatibility **/ #define WIN32_LEAN_AND_MEAN 1