From 843bd69498fbad18ffae01f70b828d546a673300 Mon Sep 17 00:00:00 2001 From: clonker <1685266+clonker@users.noreply.github.com> Date: Wed, 16 Apr 2025 14:26:28 +0200 Subject: [PATCH] Fix tiny typos --- schemas/pointer/expression.schema.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/schemas/pointer/expression.schema.yaml b/schemas/pointer/expression.schema.yaml index 965d1cb4..f2410fb4 100644 --- a/schemas/pointer/expression.schema.yaml +++ b/schemas/pointer/expression.schema.yaml @@ -63,7 +63,7 @@ $defs: maxItems: 2 "$product": description: | - A list of expressions to be multipled. + A list of expressions to be multiplied. $ref: "#/$defs/Operands" "$quotient": description: | @@ -200,13 +200,13 @@ $defs: This object's value is evaluated as follows, based on the bytes width of the value `` evaluates to and based on `` (using the value of `"$wordsize"` for `` in the case of the latter form above): - - If the width equals ``, this object evalutes to the same value as + - If the width equals ``, this object evaluates to the same value as `` (equivalent to the identity function or no-op). - - If the width is less than ``, this object evalutes to the same value + - If the width is less than ``, this object evaluates to the same value as `` but with additional zero-bytes (`0x00`) prepended on the left (most significant) side, such that the resulting bytes width equals ``. - - If the width exceeds ``, this object evalutes to the same value + - If the width exceeds ``, this object evaluates to the same value as `` but with a number of bytes removed from the left (most significant) side until the bytes width equals ``.