From 65184b7c31cd76e5e0ae1b58ddf2a85005fc642d Mon Sep 17 00:00:00 2001 From: Caleb Curry Date: Fri, 13 Oct 2023 21:11:30 -0400 Subject: [PATCH] Update 03_language.md (#296) * Update 03_language.md fix link Signed-off-by: Caleb Curry * fix link --------- Signed-off-by: Caleb Curry Co-authored-by: collin <16715212+collinc97@users.noreply.github.com> --- documentation/leo/03_language.md | 2 +- documentation/sdk/typescript/00_sdk_overview.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/leo/03_language.md b/documentation/leo/03_language.md index b38ee69fe..3b3744af8 100644 --- a/documentation/leo/03_language.md +++ b/documentation/leo/03_language.md @@ -144,7 +144,7 @@ program test.aleo { A Leo program contains declarations of a [Program Scope](#program-scope), [Imports](#import) , [Transition Functions](#transition-function), [Helper Functions](#helper-function), [Structs](#struct) , [Records](#record), -[Mappings](#mapping), and [Finalize Functions](#finalize). +[Mappings](#mapping), and [Finalize Functions](#finalize-function). Declarations are locally accessible within a program file. If you need a declaration from another Leo file, you must import it. diff --git a/documentation/sdk/typescript/00_sdk_overview.md b/documentation/sdk/typescript/00_sdk_overview.md index d83c0df8a..598df7b6d 100644 --- a/documentation/sdk/typescript/00_sdk_overview.md +++ b/documentation/sdk/typescript/00_sdk_overview.md @@ -659,7 +659,7 @@ export default App; -A full example of this implementation can be found [here](https://github.com/AleoHQ/sdk/blob/testnet3/create-aleo-app/template-react/src/App.jsx) +A full example of this implementation can be found [here](https://github.com/AleoHQ/sdk/blob/testnet3/create-aleo-app/template-react-leo/src/App.jsx) ## 3. Aleo Credit Transfers