diff --git a/xml/System.Collections.Generic/SortedSet`1.xml b/xml/System.Collections.Generic/SortedSet`1.xml index 2d3155b0aae..ca0f2274790 100644 --- a/xml/System.Collections.Generic/SortedSet`1.xml +++ b/xml/System.Collections.Generic/SortedSet`1.xml @@ -1074,7 +1074,7 @@ ## Remarks This method removes any element in the current that is also in `other`. Duplicate values in `other` are ignored. - This method is an `O(n)` operation, where `n` is the number of elements in the `other` parameter. + This method is an `O(n log m)` operation, where `m` is and `n` is the number of elements in `other`. diff --git a/xml/System/Converter`2.xml b/xml/System/Converter`2.xml index ac4607b1128..7ea05fb2c6a 100644 --- a/xml/System/Converter`2.xml +++ b/xml/System/Converter`2.xml @@ -97,7 +97,7 @@ Example 2 - The following code example defines a method named `PointFToPoint` that converts a structure to a structure. The example then creates a of structures, creates a `Converter\` delegate (`Converter(Of PointF, Point)` in Visual Basic) to represent the `PointFToPoint` method, and passes the delegate to the method. The method passes each element of the input list to the `PointFToPoint` method and puts the converted elements into a new list of structures. Both lists are displayed. + The following code example defines a method named `PointFToPoint` that converts a structure to a structure. The example then creates a of structures, creates a `Converter` delegate (`Converter(Of PointF, Point)` in Visual Basic) to represent the `PointFToPoint` method, and passes the delegate to the method. The method passes each element of the input list to the `PointFToPoint` method and puts the converted elements into a new list of structures. Both lists are displayed. :::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/List`1_ConvertAll/cpp/source.cpp" id="Snippet1"::: :::code language="csharp" source="~/snippets/csharp/System/ConverterTInput,TOutput/Overview/source.cs" interactive="try-dotnet" id="Snippet1"::: diff --git a/xml/System/Math.xml b/xml/System/Math.xml index 32185e29201..2177d3c1b19 100644 --- a/xml/System/Math.xml +++ b/xml/System/Math.xml @@ -4017,8 +4017,6 @@ Remainder = (Math.Abs(dividend) - (Math.Abs(divisor) * This method calls into the underlying C runtime, and the exact result or valid input range may differ between different operating systems or architectures. - This method calls into the underlying C runtime, and the exact result or valid input range may differ between different operating systems or architectures. - ## Examples