From 012de4b104645982c1395d42e6cb28326dcbdf30 Mon Sep 17 00:00:00 2001 From: KMCreatesWorlds <78648740+KMCreatesWorlds@users.noreply.github.com> Date: Fri, 15 Sep 2023 10:07:14 +0200 Subject: [PATCH] Update source/docs/casper/resources/moving-to-casper.md Co-authored-by: Iulia Popescu --- source/docs/casper/resources/moving-to-casper.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/casper/resources/moving-to-casper.md b/source/docs/casper/resources/moving-to-casper.md index e1a9248611..7fa6dd65d5 100644 --- a/source/docs/casper/resources/moving-to-casper.md +++ b/source/docs/casper/resources/moving-to-casper.md @@ -143,7 +143,7 @@ pub extern "C" fn counter_inc() { It's important to note that entry points do not have input arguments in their definition, but the arguments can be accessed using the [RuntimeArgs](https://docs.rs/casper-types/latest/casper_types/struct.RuntimeArgs.html) passed to the contract. Entry points are instantiated within the `call` entry point. -If a return value is needed, it should be declared using the following syntax described in the [Interacting with Runtime Return Values](../resources/advanced/return-values-tutorial.md) tutorial. +If a return value is needed, it should be declared using the syntax described in the [Interacting with Runtime Return Values](../resources/advanced/return-values-tutorial.md) tutorial. ```rust runtime::ret(value);