Skip to content

Commit 5ebee27

Browse files
rename Coll.Empty and Dict.Empty to .Create
1 parent f8048e2 commit 5ebee27

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Code/MethodSystem/Methods/CollectionVariableMethods/Coll_EmptyMethod.cs renamed to Code/MethodSystem/Methods/CollectionVariableMethods/Coll_CreateMethod.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace SER.Code.MethodSystem.Methods.CollectionVariableMethods;
66

77
[UsedImplicitly]
88
// ReSharper disable once InconsistentNaming
9-
public class Coll_EmptyMethod : ReturningMethod<CollectionValue>
9+
public class Coll_CreateMethod : ReturningMethod<CollectionValue>
1010
{
1111
public override string Description => "Returns an empty collection.";
1212

Code/MethodSystem/Methods/DictionaryMethods/Dict_EmptyMethod.cs renamed to Code/MethodSystem/Methods/DictionaryMethods/Dict_CreateMethod.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace SER.Code.MethodSystem.Methods.DictionaryMethods;
77

88
[UsedImplicitly]
99
// ReSharper disable once InconsistentNaming
10-
public class Dict_EmptyMethod : ReferenceReturningMethod<Dict>, IAdditionalDescription
10+
public class Dict_CreateMethod : ReferenceReturningMethod<Dict>, IAdditionalDescription
1111
{
1212
public override string Description => "Creates an empty dictionary.";
1313

0 commit comments

Comments
 (0)