diff --git a/Liner/Generics/SetGeneric.cs b/Liner/Generics/SetGeneric.cs index fa66542..822718d 100644 --- a/Liner/Generics/SetGeneric.cs +++ b/Liner/Generics/SetGeneric.cs @@ -70,7 +70,7 @@ namespace Liner.Generics /// public bool Remove(int position) { - if(_places.Count >= position && position >= 0) + if(_places.Count > position && position >= 0) { _places.RemoveAt(position); return true;