From 61272d1ee7842402fe921132c546a6d92341a050 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Thu, 11 Jan 2024 14:21:21 -0500 Subject: [PATCH] Addresses of user accounts are strictly less than addresses of smart contracts. Co-authored-by: NicNomadic <148877430+NicNomadic@users.noreply.github.com> --- docs/smart-contracts/logic/comparing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/smart-contracts/logic/comparing.md b/docs/smart-contracts/logic/comparing.md index d84ad3922..e7791c02e 100644 --- a/docs/smart-contracts/logic/comparing.md +++ b/docs/smart-contracts/logic/comparing.md @@ -17,7 +17,7 @@ How values are compared depends on the type of the values: - Strings, `bytes`, `key_hash`, `key`, `signature` and `chain_id` values are compared lexicographically. - Boolean values are compared so that false is strictly less than true. - Address are compared as follows: - - Addresses of user accounts are strictly less than addresses of smart contract accounts. + - Addresses of user accounts are strictly less than addresses of smart contracts. - Addresses of the same type are compared lexicographically. - Pair values (and therefore records) are compared component by component, starting with the first component. - Options are compared as follows: