From b62dc7b3ef53ee12403770dca4900273a1423f36 Mon Sep 17 00:00:00 2001 From: gagdiez Date: Tue, 16 Jan 2024 16:31:42 +0000 Subject: [PATCH] Update docs/2.develop/contracts/quickstart.md --- docs/2.develop/contracts/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/2.develop/contracts/quickstart.md b/docs/2.develop/contracts/quickstart.md index 08a897575e7..c8b3619ed9d 100644 --- a/docs/2.develop/contracts/quickstart.md +++ b/docs/2.develop/contracts/quickstart.md @@ -256,7 +256,7 @@ To interact with your deployed smart contract you can call its methods using the The `get_greeting` method is a [`view`](./anatomy.md#public-methods) method, meaning it only reads from the contract's state, and thus can be called for **free**. ```bash -> near contract call-function as-read-only as-read-only get_greeting +> near contract call-function as-read-only get_greeting "Hello" # Response ```