From 667b01927a4ecdbb9c8fefd2164d8c4afb0f9b6e Mon Sep 17 00:00:00 2001 From: Petr Onderka Date: Sat, 17 Mar 2018 02:01:14 +0100 Subject: [PATCH] Correct time complexity of List.InsertRange --- xml/System.Collections.Generic/List`1.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml/System.Collections.Generic/List`1.xml b/xml/System.Collections.Generic/List`1.xml index 8f444533cbcc8..31218b375ef92 100644 --- a/xml/System.Collections.Generic/List`1.xml +++ b/xml/System.Collections.Generic/List`1.xml @@ -2430,7 +2430,7 @@ Public Function StartsWith(e As Employee) As Boolean The order of the elements in the collection is preserved in the . - This method is an O(*n* + *m*) operation, where *n* is the number of elements to be added and *m* is . + This method is an O(*n* * *m*) operation, where *n* is the number of elements to be added and *m* is .