From 134d7d5a5876a53a10ecb2eeac8d193bdddcea81 Mon Sep 17 00:00:00 2001 From: Marc Schink Date: Fri, 2 Apr 2021 11:17:00 +0200 Subject: doc/manual/style: Do not use 'Yoda conditions' 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 Reviewed-on: http://openocd.zylin.com/6132 Reviewed-by: Tarek BOCHKATI Tested-by: jenkins Reviewed-by: Oleksij Rempel Reviewed-by: Antonio Borneo Reviewed-by: Tomas Vanek --- doc/manual/style.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/manual/style.txt b/doc/manual/style.txt index dad3bb4..c3fcfd7 100644 --- a/doc/manual/style.txt +++ b/doc/manual/style.txt @@ -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 -- cgit v1.1