From b96fa87a0e2023d2c89ac767cd0bef2b985e10bc Mon Sep 17 00:00:00 2001 From: Jeffrey Date: Tue, 8 Oct 2024 00:31:40 +0800 Subject: [PATCH] Fix a typo for the 'delete' instruction (#551) The description for the delete logic should be: implement the logic for the 'delete' instruction rather than ... 'update' instruction --- docs/intro/quick-start/program-derived-address.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/quick-start/program-derived-address.md b/docs/intro/quick-start/program-derived-address.md index 49ff4ac33..4f826ad36 100644 --- a/docs/intro/quick-start/program-derived-address.md +++ b/docs/intro/quick-start/program-derived-address.md @@ -599,7 +599,7 @@ The `Delete` struct defines the accounts required for the `delete` instruction: -Next, implement the logic for the `update` instruction. +Next, implement the logic for the `delete` instruction. ```rs filename="lib.rs" pub fn delete(_ctx: Context) -> Result<()> {