diff --git a/src/Avalonia.Visuals/Point.cs b/src/Avalonia.Visuals/Point.cs
index ae713e57a5..d95512c976 100644
--- a/src/Avalonia.Visuals/Point.cs
+++ b/src/Avalonia.Visuals/Point.cs
@@ -110,10 +110,10 @@ namespace Avalonia
}
///
- /// Add a cortege off double numbers
+ /// Add a 2-tuple of double
///
/// The point.
- /// cortege off doubles
+ /// 2-tuple of double
/// A point that is the result of the addition.
public static Point operator +(Point a, (double x, double y) b)
{
@@ -154,10 +154,10 @@ namespace Avalonia
}
///
- /// Subtracts a cortege off double numbers
+ /// Subtracts a 2-tuple of double
///
/// The point.
- /// cortege off doubles
+ /// 2-tuple of double
/// A point that is the result of the subtraction.
public static Point operator -(Point a, (double x, double y) b)
{
@@ -192,10 +192,10 @@ namespace Avalonia
public static Point operator *(double k, Point p) => new Point(p.X * k, p.Y * k);
///
- /// Multiplies a cortege off double numbers
+ /// Multiplies a 2-tuple of double
///
/// The point.
- /// cortege off doubles
+ /// 2-tuple of double
/// Points having its coordinates multiplied.
public static Point operator *(Point a, (double x, double y) b)
{
@@ -211,10 +211,10 @@ namespace Avalonia
public static Point operator /(Point p, double k) => new Point(p.X / k, p.Y / k);
///
- /// Divides a point by a cortege off double numbers
+ /// Divides a point by a 2-tuple of doubles
///
/// The point.
- /// cortege off doubles
+ /// 2-tuple of double
/// Points having its coordinates divided
public static Point operator /(Point a, (double x, double y) b)
{
@@ -346,11 +346,11 @@ namespace Avalonia
}
///
- /// Returns a boolean indicating whether the point is equal to cortege off double numbers.
+ /// Returns a boolean indicating whether the point coordinates are equal to 2-tuple of double
///
- /// Ņortege off double numbers
+ /// 2-tuple of double
///
- /// True if is cortege off double numbersthat equals the current point.
+ /// True if is 2-tuple of double equals coordinates current point.
///
public bool Equals((double x, double y) other)
{
@@ -359,7 +359,7 @@ namespace Avalonia
}
///
- /// Gets a value indicating that Point coordinatrs is zero
+ /// Gets a value indicating that point coordinates are zero
///
public bool IsDefault
{