소스 검색

Merge pull request #40583 from aaronfranke/cs-xml-plane

Fix XML in Plane.cs
Rémi Verschelde 5 년 전
부모
커밋
0397ddf9d5
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      modules/mono/glue/GodotSharp/GodotSharp/Core/Plane.cs

+ 2 - 2
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; }