diff --git a/snippets/csharp/System.Numerics/Complex/Zero/zero1.cs b/snippets/csharp/System.Numerics/Complex/Zero/zero1.cs index 7e4c6f2abef..8bd2d9e18c4 100644 --- a/snippets/csharp/System.Numerics/Complex/Zero/zero1.cs +++ b/snippets/csharp/System.Numerics/Complex/Zero/zero1.cs @@ -9,7 +9,7 @@ public static void Main() Complex value = Complex.Zero; Console.WriteLine(value.ToString()); - // Instantiate a complex number with real part 0 and imaginary part 1. + // Instantiate a complex number with real part 0 and imaginary part 0. Complex value1 = new Complex(0, 0); Console.WriteLine(value.Equals(value1)); } diff --git a/snippets/visualbasic/System.Numerics/Complex/Zero/zero1.vb b/snippets/visualbasic/System.Numerics/Complex/Zero/zero1.vb index fe3e5b01cdc..0b4f4ab0740 100644 --- a/snippets/visualbasic/System.Numerics/Complex/Zero/zero1.vb +++ b/snippets/visualbasic/System.Numerics/Complex/Zero/zero1.vb @@ -9,7 +9,7 @@ Module Example Dim value As Complex = Complex.Zero Console.WriteLine(value.ToString()) - ' Instantiate a complex number with real part 1 and imaginary part 0. + ' Instantiate a complex number with real part 0 and imaginary part 0. Dim value1 As New Complex(0, 0) Console.WriteLine(value.Equals(value1)) End Sub