From bf887b614702c0aee6a8851f4bcf171182aef947 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Fri, 2 Oct 2020 07:47:17 +0200 Subject: [PATCH] CODING_CONVENTIONS.md: fix typo 'seperate' -> 'separate' --- CODING_CONVENTIONS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODING_CONVENTIONS.md b/CODING_CONVENTIONS.md index 5c4c69c0d4..24e6c05953 100644 --- a/CODING_CONVENTIONS.md +++ b/CODING_CONVENTIONS.md @@ -58,7 +58,7 @@ uint8_t b; } foobar_t; ``` -* Use of a seperate line typedef for structs is allowed for forward +* Use of a separate line typedef for structs is allowed for forward declarations, e.g., ``` typedef struct mystruct mystruct_t;