From d1eb55e2954bcbf302ed30f7d37c656a67c59ec8 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Tue, 28 Mar 2023 19:51:47 +0100 Subject: [PATCH] Fixed comment spelling --- include/etl/atomic/atomic_gcc_sync.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/etl/atomic/atomic_gcc_sync.h b/include/etl/atomic/atomic_gcc_sync.h index 6f54c77a..152279dd 100644 --- a/include/etl/atomic/atomic_gcc_sync.h +++ b/include/etl/atomic/atomic_gcc_sync.h @@ -39,12 +39,12 @@ SOFTWARE. #include #include -// Select the amtomic builtins based on the ARM5 version of the GCC compiler. +// Select the atomic builtins based on the ARM5 version of the GCC compiler. #if defined(ETL_COMPILER_ARM5) #define ETL_USE_SYNC_BUILTINS #endif -// Select the amtomic builtins based on the ARM6 version of the GCC compiler. +// Select the atomic builtins based on the ARM6 version of the GCC compiler. #if defined(ETL_COMPILER_ARM6) #if ETL_COMPILER_FULL_VERSION >= 40700 #define ETL_USE_ATOMIC_BUILTINS @@ -53,7 +53,7 @@ SOFTWARE. #endif #endif -// Select the amtomic builtins based on the version of the GCC compiler. +// Select the atomic builtins based on the version of the GCC compiler. #if defined(ETL_COMPILER_GCC) #if ETL_COMPILER_FULL_VERSION >= 40700 #define ETL_USE_ATOMIC_BUILTINS @@ -62,7 +62,7 @@ SOFTWARE. #endif #endif -// Select the amtomic builtins based on the version of the Clang compiler. +// Select the atomic builtins based on the version of the Clang compiler. #if defined(ETL_COMPILER_CLANG) #if ETL_COMPILER_FULL_VERSION >= 50000 #define ETL_USE_ATOMIC_BUILTINS