From 045c42f514afdd414dcf034e3462fef6fc315359 Mon Sep 17 00:00:00 2001
From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
Date: Sat, 2 Mar 2024 18:13:01 +0100
Subject: [PATCH] [C#] Fix typo in `Color` documentation
(cherry picked from commit 5aadb8660b512548713b3e69e01e2b9d32befc15)
---
modules/mono/glue/GodotSharp/GodotSharp/Core/Color.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Color.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Color.cs
index 5dddb38055f..c91a51031a0 100644
--- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Color.cs
+++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Color.cs
@@ -330,7 +330,7 @@ namespace Godot
/// by the specified ratio (on the range of 0 to 1).
///
/// The ratio to lighten by.
- /// The darkened color.
+ /// The lightened color.
public readonly Color Lightened(float amount)
{
Color res = this;