From a91a9eeffff78895f7879e196fa08ffdcfcda0fd Mon Sep 17 00:00:00 2001 From: Aria Beingessner Date: Mon, 28 Mar 2022 14:26:24 -0400 Subject: [PATCH] clarify that WASM has address spaces --- library/core/src/ptr/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/ptr/mod.rs b/library/core/src/ptr/mod.rs index 816a5bca00a..6a7841d3de6 100644 --- a/library/core/src/ptr/mod.rs +++ b/library/core/src/ptr/mod.rs @@ -163,7 +163,7 @@ //! of pointers and `usize` (and `isize`), and defining a pointer to semantically contain the //! following information: //! -//! * The **address-space** it is part of. +//! * The **address-space** it is part of (i.e. "data" vs "code" in WASM). //! * The **address** it points to, which can be represented by a `usize`. //! * The **provenance** it has, defining the memory it has permission to access. //!