Skip to content

Commit 6f6635d

Browse files
svickRon Petrusha
authored andcommitted
Correct time complexity of List<T>.InsertRange (dotnet#4693)
1 parent d471059 commit 6f6635d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/System.Collections.Generic/List`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2430,7 +2430,7 @@ Public Function StartsWith(e As Employee) As Boolean
24302430
24312431
The order of the elements in the collection is preserved in the <xref:System.Collections.Generic.List%601>.
24322432
2433-
This method is an O(*n* + *m*) operation, where *n* is the number of elements to be added and *m* is <xref:System.Collections.Generic.List%601.Count%2A>.
2433+
This method is an O(*n* * *m*) operation, where *n* is the number of elements to be added and *m* is <xref:System.Collections.Generic.List%601.Count%2A>.
24342434
24352435
24362436

0 commit comments

Comments
 (0)