diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs index 6b32efbe09..0642bbc966 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs @@ -514,7 +514,7 @@ namespace Godot } /// - /// Moves this vector toward by the fixed amount. + /// Returns a new vector moved toward by the fixed amount. Will not go past the final value. /// /// The vector to move towards. /// The amount to move towards by. diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector3.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector3.cs index 033b225a0c..8f3956f41e 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector3.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector3.cs @@ -525,7 +525,7 @@ namespace Godot } /// - /// Moves this vector toward by the fixed amount. + /// Returns a new vector moved toward by the fixed amount. Will not go past the final value. /// /// The vector to move towards. /// The amount to move towards by.