From 187b50ed08951d3b1c4eca91b574942f13ee0beb Mon Sep 17 00:00:00 2001 From: Pierre Seznec <34547263+peterjah@users.noreply.github.com> Date: Thu, 10 Oct 2024 10:35:42 +0200 Subject: [PATCH] Update docs/build/smart-contract/basic-concepts/functions-parameters.mdx Co-authored-by: Modship <yeskinokay@gmail.com> --- .../smart-contract/basic-concepts/functions-parameters.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/smart-contract/basic-concepts/functions-parameters.mdx b/docs/build/smart-contract/basic-concepts/functions-parameters.mdx index 8563c9256..877cef1fb 100644 --- a/docs/build/smart-contract/basic-concepts/functions-parameters.mdx +++ b/docs/build/smart-contract/basic-concepts/functions-parameters.mdx @@ -72,7 +72,7 @@ export function hello(argsData: StaticArray<u8>): StaticArray<u8> { } ``` -#### Explanation of the Code +#### Explanation of the code 1. Import Statements: - We import Args from [@massalabs/as-types](https://github.com/massalabs/as/tree/main/packages/as-types) to handle the deserialization of function arguments.