Skip to content

Commit

Permalink
Update constructor documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
AristurtleDev committed Mar 13, 2024
1 parent bd836a2 commit f9c9be3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MonoGame.Framework/DrawableGameComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ public bool Visible
public event EventHandler<EventArgs> VisibleChanged;

/// <summary>
/// Create a <see cref="DrawableGameComponent"/>.
/// Create a new instance of the DrawableGameComponent class.
/// </summary>
/// <param name="game">The game that this component will belong to.</param>
/// <param name="game">The <see cref="Game"/> that this component will belong to.</param>
public DrawableGameComponent(Game game)
: base(game)
{
Expand Down

0 comments on commit f9c9be3

Please sign in to comment.