From 3648e55b97e3aa71e903cc3bf371b3bc4748f0f9 Mon Sep 17 00:00:00 2001 From: Clay-Mysten <100217682+Clay-Mysten@users.noreply.github.com> Date: Tue, 19 Jul 2022 14:23:23 -0600 Subject: [PATCH] Update sui-move-diffs.md (#3301) --- doc/src/learn/sui-move-diffs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/learn/sui-move-diffs.md b/doc/src/learn/sui-move-diffs.md index df24bc54df0f3..670dc9b63e5fb 100644 --- a/doc/src/learn/sui-move-diffs.md +++ b/doc/src/learn/sui-move-diffs.md @@ -31,7 +31,7 @@ So there is no global storage in Sui Move. None of the global storage-related op In Move, there is a special _address_ type. This type is used to represent account addresses in core Move. Core Move needs to know the address of an account when dealing with the global storage. The _address_ type is 16 bytes, which is sufficient for the core Move security model. -In Sui, since we don’t support global storage in Move, we don’t need the _address_ type to represent user accounts. Instead, we use the _address_ type to represent the Object ID. Refer to the [id.move](https://github.com/MystenLabs/sui/blob/main/crates/sui-framework/sources/id.move) file in Sui framework for an understanding of address use. +In Sui, since we don’t support global storage in Move, we don’t need the _address_ type to represent user accounts. Instead, we use the _address_ type to represent the Object ID. Refer to the [object.move](https://github.com/MystenLabs/sui/blob/main/crates/sui-framework/sources/object.move) file in Sui framework for an understanding of address use. ## Object with key ability, globally unique IDs