1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecT193R1Point.cs b/crypto/src/math/ec/custom/sec/SecT193R1Point.cs
index 062fce9d4..9dbdd14c2 100644
--- a/crypto/src/math/ec/custom/sec/SecT193R1Point.cs
+++ b/crypto/src/math/ec/custom/sec/SecT193R1Point.cs
@@ -184,7 +184,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec
ECFieldElement X1 = this.RawXCoord;
if (X1.IsZero)
{
- // A point with X == 0 is it's own Additive inverse
+ // A point with X == 0 is its own additive inverse
return curve.Infinity;
}
@@ -222,7 +222,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec
ECFieldElement X1 = this.RawXCoord;
if (X1.IsZero)
{
- // A point with X == 0 is it's own Additive inverse
+ // A point with X == 0 is its own additive inverse
return b;
}
|