From 2a8cbbb44b5a30df28efc6977ee363a9332bab64 Mon Sep 17 00:00:00 2001 From: Jimmy Date: Sun, 3 Mar 2024 05:22:22 +0800 Subject: [PATCH] fix comment (#975) --- tests/Neo.Compiler.CSharp.TestContracts/Contract_StaticVar.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 {