Skip to content
This repository was archived by the owner on May 9, 2025. It is now read-only.

Commit beb25ed

Browse files
Made Contains function public and fixed typo
1 parent 60ba88f commit beb25ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/SO Architecture/Collections/BaseCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ IEnumerator IEnumerable.GetEnumerator()
2626
{
2727
return List.GetEnumerator();
2828
}
29-
bool Contians(object obj)
29+
public bool Contains(object obj)
3030
{
3131
return List.Contains(obj);
3232
}

0 commit comments

Comments
 (0)