From 6bde9f84237fb7696b149913967ec5221e07a9ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Latinovi=C4=87?= <33063780+stefanlatinovic@users.noreply.github.com> Date: Wed, 19 Jun 2024 18:16:13 +0200 Subject: [PATCH] chore: correct `say` method reference in `2.2-advanced-canister-calls.mdx` This commit corrects the documentation reference for the `say` method. --- .../developer-journey/level-2/2.2-advanced-canister-calls.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/developer-journey/level-2/2.2-advanced-canister-calls.mdx b/docs/tutorials/developer-journey/level-2/2.2-advanced-canister-calls.mdx index 3015aac2fe..a27b6f02ba 100644 --- a/docs/tutorials/developer-journey/level-2/2.2-advanced-canister-calls.mdx +++ b/docs/tutorials/developer-journey/level-2/2.2-advanced-canister-calls.mdx @@ -49,7 +49,7 @@ The amount of security your dapp needs depends on your dapp's use case and funct ### Example `query` call -Queries are defined by the function modifier `query` in Motoko code. Below is a simple query call used with an `echo` function. It queries the function's result and does not make any changes to the canister's state or data. +Queries are defined by the function modifier `query` in Motoko code. Below is a simple query call used with a `say` function. It queries the function's result and does not make any changes to the canister's state or data. ```motoko