From c733801d5e8c20fc042cdb71b0379e853ed16f6d Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Thu, 8 Aug 2024 21:11:59 +0200 Subject: [PATCH] Add explanation of lhs / rhs --- src/content/docs/references/docs/conversion.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/content/docs/references/docs/conversion.md b/src/content/docs/references/docs/conversion.md index cdaa1ea2..3da81f9b 100644 --- a/src/content/docs/references/docs/conversion.md +++ b/src/content/docs/references/docs/conversion.md @@ -19,6 +19,8 @@ C3 differs in some crucial respects when it comes to number conversions and prom C3 uses two's complement arithmetic for all integer math. +*Please note: the abbreviations "lhs" for "left hand side" and "rhs" for "right hand side" are used in the text below. + ## Target type The left hand side of an assignment, or the parameter type in a call is known as the *target type* the target type is used for implicit widening and inferring struct initialization.