From bd291bb3da6406306989fe921b026778f3b5114f Mon Sep 17 00:00:00 2001 From: Shivaji Raut <108468912+shivaji43@users.noreply.github.com> Date: Tue, 24 Sep 2024 17:05:54 +0530 Subject: [PATCH] Added Overview and made changes according to the requested changes --- content/courses/onchain-development/intro-to-anchor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/courses/onchain-development/intro-to-anchor.md b/content/courses/onchain-development/intro-to-anchor.md index ccebddf8e..f4d7e5d01 100644 --- a/content/courses/onchain-development/intro-to-anchor.md +++ b/content/courses/onchain-development/intro-to-anchor.md @@ -56,7 +56,7 @@ The core structure of an Anchor project revolves around: - `Accounts`: These are user or program-specific accounts that store state and data. Anchor makes it easy to define and validate accounts in your program. -- `Instructions`: These are the actions users and programs can trigger. Anchor +- `Instruction`: These are the actions users and programs can trigger. Anchor simplifies instruction handling by automatically mapping the data to specific program logic.