summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-07-22 09:30:02 +0200
committerGitHub <noreply@github.com>2020-07-22 09:30:02 +0200
commit0397ddf9d55e707b7e18a8567e623c723be0a669 (patch)
tree23f1999fa3dfcf936b43cecdc0f009e6ae71b031
parenta5fb4451210625702474a8fac1dd880e78a409e9 (diff)
parentad96b6314c0576926e8b4497aef6cfd801f48389 (diff)
Merge pull request #40583 from aaronfranke/cs-xml-plane
Fix XML in Plane.cs
-rw-r--r--modules/mono/glue/GodotSharp/GodotSharp/Core/Plane.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Plane.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Plane.cs
index 2748454e48..3b4e749532 100644
--- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Plane.cs
+++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Plane.cs
@@ -22,7 +22,7 @@ namespace Godot
/// <summary>
/// The normal of the plane, which must be normalized.
/// In the scalar equation of the plane `ax + by + cz = d`, this is
- /// the vector `(a, b, c)`, where `d` is the <see cref="D"> property.
+ /// the vector `(a, b, c)`, where `d` is the <see cref="D"/> property.
/// </summary>
/// <value>Equivalent to `x`, `y`, and `z`.</value>
public Vector3 Normal
@@ -84,7 +84,7 @@ namespace Godot
/// <see cref="Normal"/>). This value is typically non-negative.
/// In the scalar equation of the plane `ax + by + cz = d`,
/// this is `d`, while the `(a, b, c)` coordinates are represented
- /// by the <see cref="Normal"> property.
+ /// by the <see cref="Normal"/> property.
/// </summary>
/// <value>The plane's distance from the origin.</value>
public real_t D { get; set; }