Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update src/libraries/System.Runtime.Numerics/src/System/Numerics/Comp…
…lex.cs

Co-authored-by: Drew Kersnar <[email protected]>
  • Loading branch information
tannergooding and dakersnar authored May 6, 2022
commit 97c8cdbf6d4dcbcdc749a95844b2ece152ce9b28
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ public static explicit operator Complex(decimal value)
//

/// <inheritdoc cref="IMultiplyOperators{TSelf, TOther, TResult}.op_CheckedMultiply(TSelf, TOther)" />
static Complex IMultiplyOperators<Complex, Complex, Complex>.operator checked *(Complex left, Complex right) => left* right;
static Complex IMultiplyOperators<Complex, Complex, Complex>.operator checked *(Complex left, Complex right) => left * right;

//
// INumberBase
Expand Down