Skip to content

Commit f280235

Browse files
authored
fix typo
1 parent 2302107 commit f280235

File tree

1 file changed

+3
-3
lines changed
  • samples/snippets/csharp/VS_Snippets_CLR_System/system.Math.SinCos/CS

1 file changed

+3
-3
lines changed

samples/snippets/csharp/VS_Snippets_CLR_System/system.Math.SinCos/CS/sincos.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ public static void Main()
3636
"\nWhen you have calls to sin(X) and cos(X) they \n" +
3737
"can be replaced with a single call to sincos(x):" );
3838

39-
UseCombinedSinCosine(15.0);
40-
UseCombinedSinCosine(30.0);
41-
UseCombinedSinCosine(45.0);
39+
UseCombinedSineCosine(15.0);
40+
UseCombinedSineCosine(30.0);
41+
UseCombinedSineCosine(45.0);
4242
}
4343

4444
// Evaluate trigonometric identities with a given angle.

0 commit comments

Comments
 (0)