From 6d0dd0aa26962ac53c6c05aff4b78c0d127194ac Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Mon, 13 Jan 2025 18:41:49 +0100 Subject: [PATCH] Minor typo fix in 04-cross-contract-calls.md --- .../crosswords/03-intermediate/04-cross-contract-calls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/3.tutorials/crosswords/03-intermediate/04-cross-contract-calls.md b/docs/3.tutorials/crosswords/03-intermediate/04-cross-contract-calls.md index 41dec1e07a7..9bb04f8ecbc 100644 --- a/docs/3.tutorials/crosswords/03-intermediate/04-cross-contract-calls.md +++ b/docs/3.tutorials/crosswords/03-intermediate/04-cross-contract-calls.md @@ -190,7 +190,7 @@ In the above snippet, there's one difference from the callback we saw in `claim_ ## Callbacks -The way that the callback works is that you start with the `Self::ext()` and pass in the current acount ID using `env::current_account_id()`. This is essentially saying that you want to call a function that lives on the current account ID. +The way that the callback works is that you start with the `Self::ext()` and pass in the current account ID using `env::current_account_id()`. This is essentially saying that you want to call a function that lives on the current account ID. You then have a couple of config options that each start with `.with_*`: