From 2d32668a525b182562ee68d6a92a751c897c34d9 Mon Sep 17 00:00:00 2001
From: Genevieve Warren <24882762+gewarren@users.noreply.github.com>
Date: Wed, 23 Oct 2024 14:49:58 -0700
Subject: [PATCH 1/3] fix build suggestions
---
.../ObjectPool.xml | 6 +-
.../IDictionary`2.xml | 302 +++++++++---------
.../ObjectSelectorEditor.xml | 11 +-
xml/System.Numerics.Tensors/Tensor.xml | 7 +-
.../TensorPrimitives.xml | 24 +-
5 files changed, 172 insertions(+), 178 deletions(-)
diff --git a/xml/Microsoft.Extensions.ObjectPool/ObjectPool.xml b/xml/Microsoft.Extensions.ObjectPool/ObjectPool.xml
index 145b0c61a15..5c88b2c248f 100644
--- a/xml/Microsoft.Extensions.ObjectPool/ObjectPool.xml
+++ b/xml/Microsoft.Extensions.ObjectPool/ObjectPool.xml
@@ -20,9 +20,7 @@
-
- Methods for creating instances.
-
+ Methods for creating instances.
To be added.
@@ -65,7 +63,7 @@
To be added.
To be added.
To be added.
-
+
diff --git a/xml/System.Collections.Generic/IDictionary`2.xml b/xml/System.Collections.Generic/IDictionary`2.xml
index 9c5e6d6d4e0..d099b5682f7 100644
--- a/xml/System.Collections.Generic/IDictionary`2.xml
+++ b/xml/System.Collections.Generic/IDictionary`2.xml
@@ -78,42 +78,42 @@
The type of values in the dictionary.
Represents a generic collection of key/value pairs.
- interface is the base interface for generic collections of key/value pairs.
-
- Each element is a key/value pair stored in a object.
-
- Each pair must have a unique key. Implementations can vary in whether they allow `key` to be `null`. The value can be `null` and does not have to be unique. The interface allows the contained keys and values to be enumerated, but it does not imply any particular sort order.
-
- The `foreach` statement of the C# language (`For Each` in Visual Basic, `for each` in C++) returns an object of the type of the elements in the collection. Since each element of the is a key/value pair, the element type is not the type of the key or the type of the value. Instead, the element type is . For example:
-
+ interface is the base interface for generic collections of key/value pairs.
+
+ Each element is a key/value pair stored in a object.
+
+ Each pair must have a unique key. Implementations can vary in whether they allow `key` to be `null`. The value can be `null` and does not have to be unique. The interface allows the contained keys and values to be enumerated, but it does not imply any particular sort order.
+
+ The `foreach` statement of the C# language (`For Each` in Visual Basic, `for each` in C++) returns an object of the type of the elements in the collection. Since each element of the is a key/value pair, the element type is not the type of the key or the type of the value. Instead, the element type is . For example:
+
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source2.cpp" id="Snippet11":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source2.cs" id="Snippet11":::
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source2.vb" id="Snippet11":::
-
- The `foreach` statement is a wrapper around the enumerator, which only allows reading from, not writing to, the collection.
-
+
+ The `foreach` statement is a wrapper around the enumerator, which only allows reading from, not writing to, the collection.
+
> [!NOTE]
-> Because keys can be inherited and their behavior changed, their absolute uniqueness cannot be guaranteed by comparisons using the method.
-
-
-
-## Examples
- The following code example creates an empty of strings, with string keys, and accesses it through the interface.
-
- The code example uses the method to add some elements. The example demonstrates that the method throws when attempting to add a duplicate key.
-
- The example uses the property (the indexer in C#) to retrieve values, demonstrating that a is thrown when a requested key is not present, and showing that the value associated with a key can be replaced.
-
- The example shows how to use the method as a more efficient way to retrieve values if a program often must try key values that are not in the dictionary, and how to use the method to test whether a key exists prior to calling the method.
-
- Finally, the example shows how to enumerate the keys and values in the dictionary, and how to enumerate the values alone using the property.
-
- :::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet1":::
- :::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" interactive="try-dotnet" id="Snippet1":::
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet1":::
+> Because keys can be inherited and their behavior changed, their absolute uniqueness cannot be guaranteed by comparisons using the method.
+
+
+
+## Examples
+ The following code example creates an empty of strings, with string keys, and accesses it through the interface.
+
+ The code example uses the method to add some elements. The example demonstrates that the method throws when attempting to add a duplicate key.
+
+ The example uses the property (the indexer in C#) to retrieve values, demonstrating that a is thrown when a requested key is not present, and showing that the value associated with a key can be replaced.
+
+ The example shows how to use the method as a more efficient way to retrieve values if a program often must try key values that are not in the dictionary, and how to use the method to test whether a key exists prior to calling the method.
+
+ Finally, the example shows how to enumerate the keys and values in the dictionary, and how to enumerate the values alone using the property.
+
+ :::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet1":::
+ :::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" interactive="try-dotnet" id="Snippet1":::
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet1":::
]]>
@@ -170,26 +170,26 @@
The object to use as the value of the element to add.
Adds an element with the provided key and value to the .
- property to add new elements by setting the value of a key that does not exist in the dictionary; for example, `myCollection["myNonexistentKey"] = myValue` in C# (`myCollection("myNonexistentKey") = myValue` in Visual Basic). However, if the specified key already exists in the dictionary, setting the property overwrites the old value. In contrast, the method does not modify existing elements.
-
- Implementations can vary in how they determine equality of objects; for example, the class uses , whereas the class allows the user to specify the implementation to use for comparing keys.
-
- Implementations can vary in whether they allow `key` to be `null`.
-
-
-
-## Examples
- The following code example creates an empty of strings, with integer keys, and accesses it through the interface. The code example uses the method to add some elements. The example demonstrates that the method throws an when attempting to add a duplicate key.
-
- This code is part of a larger example that can be compiled and executed. See .
-
+ property to add new elements by setting the value of a key that does not exist in the dictionary; for example, `myCollection["myNonexistentKey"] = myValue` in C# (`myCollection("myNonexistentKey") = myValue` in Visual Basic). However, if the specified key already exists in the dictionary, setting the property overwrites the old value. In contrast, the method does not modify existing elements.
+
+ Implementations can vary in how they determine equality of objects; for example, the class uses , whereas the class allows the user to specify the implementation to use for comparing keys.
+
+ Implementations can vary in whether they allow `key` to be `null`.
+
+
+
+## Examples
+ The following code example creates an empty of strings, with integer keys, and accesses it through the interface. The code example uses the method to add some elements. The example demonstrates that the method throws an when attempting to add a duplicate key.
+
+ This code is part of a larger example that can be compiled and executed. See .
+
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet2":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" interactive="try-dotnet-method" id="Snippet2":::
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet2":::
-
+
]]>
@@ -246,30 +246,28 @@
if the contains an element with the key; otherwise, .
- class uses , whereas the class allows the user to specify the implementation to use for comparing keys.
-
- Implementations can vary in whether they allow `key` to be `null`.
-
-
-
-## Examples
- The following code example shows how to use the method to test whether a key exists prior to calling the method. It also shows how to use the method, which can be a more efficient way to retrieve values if a program frequently tries key values that are not in the dictionary. Finally, it shows how to insert items using property (the indexer in C#).
-
- This code is part of a larger example that can be compiled and executed. See .
-
+ class uses , whereas the class allows the user to specify the implementation to use for comparing keys.
+
+ Implementations can vary in whether they allow `key` to be `null`.
+
+## Examples
+ The following code example shows how to use the method to test whether a key exists prior to calling the method. It also shows how to use the method, which can be a more efficient way to retrieve values if a program frequently tries key values that are not in the dictionary. Finally, it shows how to insert items using property (the indexer in C#).
+
+ This code is part of a larger example that can be compiled and executed. See .
+
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet6":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" id="Snippet6":::
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet6":::
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet6":::
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet5":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" id="Snippet5":::
-:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet5":::
+:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet5":::
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet4":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" id="Snippet4":::
-:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet4":::
-
+:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet4":::
+
]]>
@@ -321,38 +319,38 @@
Gets or sets the element with the specified key.
The element with the specified key.
- property to add new elements by setting the value of a key that does not exist in the dictionary; for example, `myCollection["myNonexistentKey"] = myValue` in C# (`myCollection("myNonexistentKey") = myValue` in Visual Basic). However, if the specified key already exists in the dictionary, setting the property overwrites the old value. In contrast, the method does not modify existing elements.
-
- Implementations can vary in how they determine equality of objects; for example, the class uses , whereas the class allows the user to specify the implementation to use for comparing keys.
-
- The C# language uses the [this](/dotnet/csharp/language-reference/keywords/this) keyword to define the indexers instead of implementing the property. Visual Basic implements as a default property, which provides the same indexing functionality.
-
- Implementations can vary in whether they allow `key` to be `null`.
-
-
-
-## Examples
- The following code example uses the property (the indexer in C#) to retrieve values, demonstrating that a is thrown when a requested key is not present, and showing that the value associated with a key can be replaced.
-
- The example also shows how to use the method as a more efficient way to retrieve values if a program often must try key values that are not in the dictionary.
-
- This code is part of a larger example that can be compiled and executed. See .
-
+ property to add new elements by setting the value of a key that does not exist in the dictionary; for example, `myCollection["myNonexistentKey"] = myValue` in C# (`myCollection("myNonexistentKey") = myValue` in Visual Basic). However, if the specified key already exists in the dictionary, setting the property overwrites the old value. In contrast, the method does not modify existing elements.
+
+ Implementations can vary in how they determine equality of objects; for example, the class uses , whereas the class allows the user to specify the implementation to use for comparing keys.
+
+ The C# language uses the [this](/dotnet/csharp/language-reference/keywords/this) keyword to define the indexers instead of implementing the property. Visual Basic implements as a default property, which provides the same indexing functionality.
+
+ Implementations can vary in whether they allow `key` to be `null`.
+
+
+
+## Examples
+ The following code example uses the property (the indexer in C#) to retrieve values, demonstrating that a is thrown when a requested key is not present, and showing that the value associated with a key can be replaced.
+
+ The example also shows how to use the method as a more efficient way to retrieve values if a program often must try key values that are not in the dictionary.
+
+ This code is part of a larger example that can be compiled and executed. See .
+
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet3":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" id="Snippet3":::
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet3":::
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet3":::
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet4":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" id="Snippet4":::
-:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet4":::
+:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet4":::
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet5":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" id="Snippet5":::
-:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet5":::
-
+:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet5":::
+
]]>
@@ -405,22 +403,22 @@
Gets an containing the keys of the .
An containing the keys of the object that implements .
- is unspecified, but it is guaranteed to be the same order as the corresponding values in the returned by the property.
-
-
-
-## Examples
- The following code example shows how to enumerate keys alone using the property.
-
- This code is part of a larger example that can be compiled and executed. See .
-
+ is unspecified, but it is guaranteed to be the same order as the corresponding values in the returned by the property.
+
+
+
+## Examples
+ The following code example shows how to enumerate keys alone using the property.
+
+ This code is part of a larger example that can be compiled and executed. See .
+
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet9":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" id="Snippet9":::
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet9":::
-
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet9":::
+
]]>
@@ -472,22 +470,22 @@
if the element is successfully removed; otherwise, . This method also returns if was not found in the original .
- class uses , whereas the class allows the user to specify the implementation to use for comparing keys.
-
-
-
-## Examples
- The following code example shows how to remove a key/value pair from a dictionary using the method.
-
- This code is part of a larger example that can be compiled and executed. See .
-
+ class uses , whereas the class allows the user to specify the implementation to use for comparing keys.
+
+
+
+## Examples
+ The following code example shows how to remove a key/value pair from a dictionary using the method.
+
+ This code is part of a larger example that can be compiled and executed. See .
+
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet10":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" id="Snippet10":::
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet10":::
-
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet10":::
+
]]>
@@ -551,27 +549,27 @@
if the object that implements contains an element with the specified key; otherwise, .
- method and the property.
-
- If the key is not found, then the `value` parameter gets the appropriate default value for the type `TValue`; for example, zero (0) for integer types, `false` for Boolean types, and `null` for reference types.
-
-
-
-## Examples
- The example shows how to use the method to retrieve values. If a program frequently tries key values that are not in a dictionary, the method can be more efficient than using the property (the indexer in C#), which throws exceptions when attempting to retrieve nonexistent keys.
-
- This code is part of a larger example that can be compiled and executed. See .
-
+ method and the property.
+
+ If the key is not found, then the `value` parameter gets the appropriate default value for the type `TValue`; for example, zero (0) for integer types, `false` for Boolean types, and `null` for reference types.
+
+
+
+## Examples
+ The example shows how to use the method to retrieve values. If a program frequently tries key values that are not in a dictionary, the method can be more efficient than using the property (the indexer in C#), which throws exceptions when attempting to retrieve nonexistent keys.
+
+ This code is part of a larger example that can be compiled and executed. See .
+
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet5":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" id="Snippet5":::
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet5":::
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet5":::
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet4":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" id="Snippet4":::
-:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet4":::
-
+:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet4":::
+
]]>
@@ -621,22 +619,22 @@
Gets an containing the values in the .
An containing the values in the object that implements .
- is unspecified, but it is guaranteed to be the same order as the corresponding keys in the returned by the property.
-
-
-
-## Examples
- The following code example shows how to enumerate values alone using the property.
-
- This code is part of a larger example that can be compiled and executed. See .
-
+ is unspecified, but it is guaranteed to be the same order as the corresponding keys in the returned by the property.
+
+
+
+## Examples
+ The following code example shows how to enumerate values alone using the property.
+
+ This code is part of a larger example that can be compiled and executed. See .
+
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Generic.IDictionary/cpp/source.cpp" id="Snippet8":::
:::code language="csharp" source="~/snippets/csharp/System.Collections.Generic/IDictionaryTKey,TValue/Overview/source.cs" id="Snippet8":::
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet8":::
-
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Generic.IDictionary/VB/source.vb" id="Snippet8":::
+
]]>
diff --git a/xml/System.ComponentModel.Design/ObjectSelectorEditor.xml b/xml/System.ComponentModel.Design/ObjectSelectorEditor.xml
index a4bd39e4ce2..7cad2ec54ef 100644
--- a/xml/System.ComponentModel.Design/ObjectSelectorEditor.xml
+++ b/xml/System.ComponentModel.Design/ObjectSelectorEditor.xml
@@ -258,11 +258,11 @@
Edits the value of the specified object using the editor style indicated by .
The new value of the object. If the value of the object has not changed, the method should return the same object it was passed.
-
@@ -475,7 +475,6 @@
The specified value.
Sets the current to the specified value.
To be added.
-
diff --git a/xml/System.Numerics.Tensors/Tensor.xml b/xml/System.Numerics.Tensors/Tensor.xml
index 0978bd28108..ef4b849cf5e 100644
--- a/xml/System.Numerics.Tensors/Tensor.xml
+++ b/xml/System.Numerics.Tensors/Tensor.xml
@@ -5214,11 +5214,10 @@
This method effectively computes .CosPi([i]).
- The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
- This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
- operating systems or architectures.
+ This method might call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different operating systems or architectures.
@@ -5296,7 +5295,7 @@
This method effectively computes .CosPi([i]).
- The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
diff --git a/xml/System.Numerics.Tensors/TensorPrimitives.xml b/xml/System.Numerics.Tensors/TensorPrimitives.xml
index 229a5bf6027..6f596a3f825 100644
--- a/xml/System.Numerics.Tensors/TensorPrimitives.xml
+++ b/xml/System.Numerics.Tensors/TensorPrimitives.xml
@@ -2404,7 +2404,7 @@
This method effectively computes [i] = .Cos([i]).
- The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -2448,7 +2448,7 @@
If a value is equal to , the result stored into the corresponding destination location is also NaN.
- The angles in x must be in radians. Use or multiply by /180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by /180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -2513,7 +2513,7 @@
If a value is equal to , the result stored into the corresponding destination location is also NaN.
- The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -2683,7 +2683,7 @@
This method effectively computes [i] = .CosPi([i]).
- The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -10156,7 +10156,7 @@
This method effectively computes [i] = .Sin([i]).
- The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -10334,7 +10334,7 @@
the corresponding destination location is set to that value.
- The angles in x must be in radians. Use or multiply by /180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by /180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -10399,7 +10399,7 @@
the corresponding destination location is set to that value.
- The angles in x must be in radians. Use or multiply by .Pi / 180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi / 180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -10460,7 +10460,7 @@
This method effectively computes [i] = .SinPi([i]).
- The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -11237,7 +11237,7 @@
This method effectively computes [i] = .Tan([i]).
- The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -11282,7 +11282,7 @@
If a value is equal to , the corresponding destination location is set to NaN.
- The angles in x must be in radians. Use or multiply by /180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by /180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -11348,7 +11348,7 @@
If a value is equal to , the corresponding destination location is set to NaN.
- The angles in x must be in radians. Use or multiply by .Pi / 180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi / 180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
@@ -11409,7 +11409,7 @@
This method effectively computes [i] = .TanPi([i]).
- The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
This method may call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different
From a73e20312cfc087e77fbbd4c800112ba9a6d8a47 Mon Sep 17 00:00:00 2001
From: Genevieve Warren <24882762+gewarren@users.noreply.github.com>
Date: Wed, 23 Oct 2024 18:13:19 -0700
Subject: [PATCH 2/3] fix tag
---
xml/System.Numerics.Tensors/Tensor.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xml/System.Numerics.Tensors/Tensor.xml b/xml/System.Numerics.Tensors/Tensor.xml
index ef4b849cf5e..b994d55a1c2 100644
--- a/xml/System.Numerics.Tensors/Tensor.xml
+++ b/xml/System.Numerics.Tensors/Tensor.xml
@@ -5214,7 +5214,7 @@
This method effectively computes .CosPi([i]).
- The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
+ The angles in x must be in radians. Use or multiply by .Pi/180 to convert degrees to radians.
This method might call into the underlying C runtime or employ instructions specific to the current architecture. Exact results may differ between different operating systems or architectures.
From 6de59930aec83e73627c0b2952bfd75910475ad7 Mon Sep 17 00:00:00 2001
From: Genevieve Warren <24882762+gewarren@users.noreply.github.com>
Date: Wed, 23 Oct 2024 20:43:47 -0700
Subject: [PATCH 3/3] fix cref
---
xml/Microsoft.Extensions.ObjectPool/ObjectPool.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xml/Microsoft.Extensions.ObjectPool/ObjectPool.xml b/xml/Microsoft.Extensions.ObjectPool/ObjectPool.xml
index 5c88b2c248f..a253e0b399d 100644
--- a/xml/Microsoft.Extensions.ObjectPool/ObjectPool.xml
+++ b/xml/Microsoft.Extensions.ObjectPool/ObjectPool.xml
@@ -63,7 +63,7 @@
To be added.
To be added.
To be added.
-
+