diff --git a/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs b/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs index a8fe67a34e209032a7d4ac72eb21fb576e88956e..af1e83472346d5cb568897de8c247a566622285d 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs @@ -866,8 +866,8 @@ public int LastIndexOf(T item, int index, int count) return Array.LastIndexOf(_items, item, index, count); } - // Removes the first occurrence given element, if found. The size of the list is - // decreased by one. + // Removes the first occurrence of the given element, if found. + // The size of the list is decreased by one if successful. public bool Remove(T item) { int index = IndexOf(item);