From f9fcb61e143bde28fd14bcbbdb97120f5afdbfb7 Mon Sep 17 00:00:00 2001 From: Kevin Petit Date: Tue, 23 Jan 2024 19:09:29 +0000 Subject: pseudocode: use true/false consistently for boolean values - Some operators were using True and False. - Document the use of true and false in the definition of the boolean number format. Signed-off-by: Kevin Petit Change-Id: Ic4c16c8527d46ca01d22e3c70c5371821a726df8 --- chapters/introduction.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chapters') diff --git a/chapters/introduction.adoc b/chapters/introduction.adoc index dc45808..8b5be21 100644 --- a/chapters/introduction.adoc +++ b/chapters/introduction.adoc @@ -479,7 +479,7 @@ The number formats supported by a given operator are listed in its table of supp |bool_t | - | - -|Boolean value. Size implementation defined. The TOSA reference model implements this as int8_t with 0 for false and 1 for true. All non-zero values are accepted on input as true. +|Boolean value that is either `true` or `false`. Size implementation defined. The TOSA reference model implements this as int8_t with 0 for `false` and 1 for `true`. All non-zero values are accepted on input as `true`. |i4_t | - -- cgit v1.2.1