[C#] Fix typo in `Color` documentation
(cherry picked from commit 5aadb8660b
)
This commit is contained in:
parent
dd6eced096
commit
045c42f514
|
@ -330,7 +330,7 @@ namespace Godot
|
||||||
/// by the specified ratio (on the range of 0 to 1).
|
/// by the specified ratio (on the range of 0 to 1).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="amount">The ratio to lighten by.</param>
|
/// <param name="amount">The ratio to lighten by.</param>
|
||||||
/// <returns>The darkened color.</returns>
|
/// <returns>The lightened color.</returns>
|
||||||
public readonly Color Lightened(float amount)
|
public readonly Color Lightened(float amount)
|
||||||
{
|
{
|
||||||
Color res = this;
|
Color res = this;
|
||||||
|
|
Loading…
Reference in New Issue