From 0b430afb29e47361a5b43858caafd45387836949 Mon Sep 17 00:00:00 2001 From: Maxime Normandin Date: Thu, 13 Nov 2025 13:25:17 -0500 Subject: [PATCH] small doc changes --- website/docs/foundations/custom-facets.mdx | 2 +- website/docs/foundations/resuable-smart-contracts.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/foundations/custom-facets.mdx b/website/docs/foundations/custom-facets.mdx index 6cb8a25e..578d8509 100644 --- a/website/docs/foundations/custom-facets.mdx +++ b/website/docs/foundations/custom-facets.mdx @@ -34,7 +34,7 @@ contract GameNFTFacet { } ``` :::tip[Key Insight] -Your custom `GameNFTFacet` and the standard `ERC721Facet` both operate on the **same storage** within your diamond. This shared-storage architecture is what makes Compose composable. +Your custom `GameNFTFacet` and the standard `ERC721Facet` both operate on the **same storage** within your diamond. This shared-storage architecture is what makes composition possible. ::: diff --git a/website/docs/foundations/resuable-smart-contracts.mdx b/website/docs/foundations/resuable-smart-contracts.mdx index 0cd8e561..d5b5390f 100644 --- a/website/docs/foundations/resuable-smart-contracts.mdx +++ b/website/docs/foundations/resuable-smart-contracts.mdx @@ -16,7 +16,7 @@ A diamond contract is a simple, tiny contract that **uses the code of other onch Below is a diagram showing a diamond connected to multiple facets that provide its functionality. - + When you use Compose, you *do* deploy new contracts—but only the small diamond contract that ties together existing onchain facets.