Skip to content

Commit

Permalink
Merge pull request #83529 from raulsntos/dotnet/docs-xml
Browse files Browse the repository at this point in the history
Fix C# docs to use the proper XML
  • Loading branch information
akien-mga committed Oct 18, 2023
2 parents 0f710e6 + e6ebde8 commit 0111637
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/mono/glue/GodotSharp/GodotSharp/Core/Basis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public readonly real_t Determinant()

/// <summary>
/// Returns the basis's rotation in the form of Euler angles.
/// The Euler order depends on the [param order] parameter,
/// The Euler order depends on the <paramref name="order"/> parameter,
/// by default it uses the YXZ convention: when decomposing,
/// first Z, then X, and Y last. The returned vector contains
/// the rotation angles in the format (X angle, Y angle, Z angle).
Expand Down
2 changes: 1 addition & 1 deletion modules/mono/glue/GodotSharp/GodotSharp/Core/Projection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ public Projection(Transform3D transform)

/// <summary>
/// Returns a Vector4 transformed (multiplied) by the transpose of the projection.
/// For transforming by inverse of a projection [code]projection.Inverse() * vector[/code] can be used instead. See <see cref="Inverse"/>.
/// For transforming by inverse of a projection <c>projection.Inverse() * vector</c> can be used instead. See <see cref="Inverse"/>.
/// </summary>
/// <param name="proj">The projection to apply.</param>
/// <param name="vector">A Vector4 to transform.</param>
Expand Down

0 comments on commit 0111637

Please sign in to comment.