From 88cf2abc8f54fb944ab3432daaf342039417a7f2 Mon Sep 17 00:00:00 2001 From: Aliaksandr Bahdanau Date: Mon, 25 Nov 2024 09:25:18 +0300 Subject: [PATCH] fix(docs): fix spell --- docs/src/content/docs/book/security-best-practices.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/content/docs/book/security-best-practices.mdx b/docs/src/content/docs/book/security-best-practices.mdx index 25bf8a1e1..b39e65a8f 100644 --- a/docs/src/content/docs/book/security-best-practices.mdx +++ b/docs/src/content/docs/book/security-best-practices.mdx @@ -349,7 +349,7 @@ message Vote { votes: Int as int32; } -message(0xd53276db) Exceeses {} +message(0xd53276db) Excesses {} contract Sample { votes: Int as uint32 = 0; @@ -361,7 +361,7 @@ contract Sample { to: sender(), value: 0, mode: SendRemainingValue | SendIgnoreErrors, - body: Exceeses{}.toCell(), + body: Excesses{}.toCell(), }); } } @@ -374,7 +374,7 @@ message Vote { votes: Int as int32; } -message(0xd53276db) Exceeses {} +message(0xd53276db) Excesses {} contract Sample { votes: Int as uint32 = 0; @@ -382,7 +382,7 @@ contract Sample { receive(msg: Vote) { self.votes += msg.votes; - self.notify(Exceeses{}.toCell()); + self.notify(Excesses{}.toCell()); } } ``` @@ -429,7 +429,7 @@ contract AnotherContract { receive(msg: TakeMoney) { require(sender() == self.oneContractAddress, "Invalid money provider!"); - // do smth with money + // Money processing } } ```