2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/test/src/math/ec/test/ECPointTest.cs b/crypto/test/src/math/ec/test/ECPointTest.cs
index 4b17d8c0a..f3fc6e592 100644
--- a/crypto/test/src/math/ec/test/ECPointTest.cs
+++ b/crypto/test/src/math/ec/test/ECPointTest.cs
@@ -88,7 +88,7 @@ namespace Org.BouncyCastle.Math.EC.Tests
internal static readonly ECPoint infinity = curve.Infinity;
- internal static readonly String[] pointSource = { "0010", "1111", "1100", "1100",
+ internal static readonly string[] pointSource = { "0010", "1111", "1100", "1100",
"0001", "0001", "1011", "0010" };
internal static readonly ECPoint[] p = new ECPoint[pointSource.Length / 2];
diff --git a/crypto/test/src/math/ec/test/TnafTest.cs b/crypto/test/src/math/ec/test/TnafTest.cs
index 98aff0025..36245b5a6 100644
--- a/crypto/test/src/math/ec/test/TnafTest.cs
+++ b/crypto/test/src/math/ec/test/TnafTest.cs
@@ -91,7 +91,7 @@
// ImplTestMultiplyTnaf("sect571k1");
// }
//
-// private void ImplTestMultiplyWnaf(String curveName)
+// private void ImplTestMultiplyWnaf(string curveName)
// {
// X9ECParameters x9ECParameters = SecNamedCurves.GetByName(curveName);
//
|