1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-15 04:15:44 +03:00

fix typos in code comments in common folder

This commit is contained in:
DusKing1 2021-08-16 15:06:07 +08:00
parent 8ca4fdc586
commit 73c87c0593
17 changed files with 20 additions and 20 deletions

View file

@ -48,7 +48,7 @@
#define PP_IIF_0(t, f) f
#define PP_IIF_1(t, f) t
// Expand all argumens and call macro with them. When expansion of some argument contains ',', it will be passed as multiple arguments
// Expand all arguments and call macro with them. When expansion of some argument contains ',', it will be passed as multiple arguments
// #define TAKE3(_1,_2,_3) CONCAT3(_1,_2,_3)
// #define MULTI2 A,B
// PP_CALL(TAKE3, MULTI2, C) expands to ABC