Skip to content

Commit

Permalink
Merge pull request #3447 from rstm-sf/doc/fix_typo_color_prop
Browse files Browse the repository at this point in the history
Fix typo in the doc for Color properties
  • Loading branch information
MarchingCube authored and danwalmsley committed Jan 20, 2020
1 parent 0a80b02 commit 99301ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Avalonia.Visuals/Media/Color.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,22 @@ static Color()
}

/// <summary>
/// Gets or sets the Alpha component of the color.
/// Gets the Alpha component of the color.
/// </summary>
public byte A { get; }

/// <summary>
/// Gets or sets the Red component of the color.
/// Gets the Red component of the color.
/// </summary>
public byte R { get; }

/// <summary>
/// Gets or sets the Green component of the color.
/// Gets the Green component of the color.
/// </summary>
public byte G { get; }

/// <summary>
/// Gets or sets the Blue component of the color.
/// Gets the Blue component of the color.
/// </summary>
public byte B { get; }

Expand Down

0 comments on commit 99301ef

Please sign in to comment.