Skip to content

Commit f0f6ff0

Browse files
authored
Incorrect statement in BigInteger.Pow(BigInteger, Int32) remarks (#11815) (#11942)
1 parent cfb2474 commit f0f6ff0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/System.Numerics/BigInteger.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9342,7 +9342,7 @@ If `provider` is `null`, the <xref:System.Globalization.NumberFormatInfo> object
93429342
<format type="text/markdown"><![CDATA[
93439343

93449344
## Remarks
9345-
The <xref:System.Numerics.BigInteger.Pow%2A> method returns 1 if the value of the exponent parameter is 0, or if the values of both the `value` and `exponent` parameters are 0. If `exponent` is 1, the <xref:System.Numerics.BigInteger.Pow%2A> method returns `value`. If `value` is negative, the method returns a negative result.
9345+
The <xref:System.Numerics.BigInteger.Pow%2A> method returns 1 if the value of the exponent parameter is 0, or if the values of both the `value` and `exponent` parameters are 0. If `exponent` is 1, the <xref:System.Numerics.BigInteger.Pow%2A> method returns `value`. If `value` is negative and exponent is odd, the method returns a negative result.
93469346

93479347
This method corresponds to the <xref:System.Math.Pow%2A?displayProperty=nameWithType> method for primitive numeric types.
93489348

0 commit comments

Comments
 (0)