From 3d2a698cbe0dcae9f4afe61f2110ce6b07720862 Mon Sep 17 00:00:00 2001 From: AztecBot Date: Tue, 27 Aug 2024 08:32:24 +0300 Subject: [PATCH] update inner_workings Additional parenthesis --- docs/docs/aztec/smart_contracts/functions/inner_workings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/aztec/smart_contracts/functions/inner_workings.md b/docs/docs/aztec/smart_contracts/functions/inner_workings.md index d4e476085f2..600707ccb79 100644 --- a/docs/docs/aztec/smart_contracts/functions/inner_workings.md +++ b/docs/docs/aztec/smart_contracts/functions/inner_workings.md @@ -162,7 +162,7 @@ This is used to designate functions as initializers (or constructors) for an Azt Key things to keep in mind: - A contract can have multiple initializer functions defined, but only one initializer function should be called for the lifetime of a contract instance -- Other functions in the contract will have an initialization check inserted, ie they cannot be called until the contract is initialized, unless they are marked with [`#[aztec(noinitcheck)])`](#aztecnoinitcheck) +- Other functions in the contract will have an initialization check inserted, ie they cannot be called until the contract is initialized, unless they are marked with [`#[aztec(noinitcheck)]`](#aztecnoinitcheck) ## #[aztec(noinitcheck)]