diff --git a/tests/Neo.Compiler.CSharp.TestContracts/Contract_StaticVar.cs b/tests/Neo.Compiler.CSharp.TestContracts/Contract_StaticVar.cs index ddc90e724..3bf7ff377 100644 --- a/tests/Neo.Compiler.CSharp.TestContracts/Contract_StaticVar.cs +++ b/tests/Neo.Compiler.CSharp.TestContracts/Contract_StaticVar.cs @@ -6,10 +6,11 @@ namespace Neo.Compiler.CSharp.UnitTests.TestClasses { /// /// A smart contract designed for testing the definition and initialization of static fields within a contract. - /// Since contract interfaces exposed to the blockchain must be static, any field to be used within these interfaces + /// Since contract interfaces exposed to the blockchain can be static, any field to be used within these static interfaces /// must also be defined as static. /// This contract demonstrates both traditional direct assignment of static fields and the use of the InitialValue /// attribute for types that cannot be directly assigned. + /// public interfaces of can be static and non-static. /// public class Contract_StaticVar : SmartContract.Framework.SmartContract {