doc/manual/style: Do not use 'Yoda conditions'
authorMarc Schink <dev@zapb.de>
Fri, 2 Apr 2021 09:17:00 +0000 (11:17 +0200)
committerAntonio Borneo <borneo.antonio@gmail.com>
Sun, 11 Apr 2021 20:27:34 +0000 (21:27 +0100)
For more details, see:
https://en.wikipedia.org/wiki/Yoda_conditions
https://sektorvanskijlen.wordpress.com/2019/05/16/conditional-inversion-very-harmful-myth/

Change-Id: If1a8a5f1d0fd345b7cc0c7b5dee6d0d47f9d7fc2
Signed-off-by: Marc Schink <dev@zapb.de>
Reviewed-on: http://openocd.zylin.com/6132
Reviewed-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Tested-by: jenkins
Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
doc/manual/style.txt

index dad3bb440c3b7dd403a612cba89bfcf2b591293e..c3fcfd782d8dfd3246eefd4a66839d66a91dd66d 100644 (file)
@@ -135,13 +135,13 @@ should write statements like the following:
 @code
 // separate statements should be preferred
 result = foo();
-if (ERROR_OK != result)
+if (result != ERROR_OK)
        ...
 @endcode
 More directly, do @b not combine these kinds of statements:
 @code
 // Combined statements should be avoided
-if (ERROR_OK != (result = foo()))
+if ((result = foo()) != ERROR_OK)
        return result;
 @endcode