From d2dfdeb6128f897c8ca635070fac3907d742ec4a Mon Sep 17 00:00:00 2001 From: Shawaz <65177277+shawazi@users.noreply.github.com> Date: Mon, 30 Sep 2024 00:54:22 -0400 Subject: [PATCH] Fix a single typo (#516) "build" is the command to build a project, but the correct tense in the context of that sentence would be "built" --- content/courses/onchain-development/intro-to-anchor-frontend.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/courses/onchain-development/intro-to-anchor-frontend.md b/content/courses/onchain-development/intro-to-anchor-frontend.md index 7d2a419bb..ecbe269e3 100644 --- a/content/courses/onchain-development/intro-to-anchor-frontend.md +++ b/content/courses/onchain-development/intro-to-anchor-frontend.md @@ -196,7 +196,7 @@ import idl from "./idl.json"; You would _ideally_ also require types for the IDL which would make it easier to interact with the program. The types can be found at `/target/types` folder -after you have build your program. Here are the types for the above IDL which +after you have built your program. Here are the types for the above IDL which when you notice has the exact same structure as the IDL but are just as type helper.