diff options
author | Max <nanodeath@gmail.com> | 2024-07-27 14:49:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-27 14:49:20 -0700 |
commit | beaf2b18ceaee3833e18b5b8ff90a08450fa2725 (patch) | |
tree | f060ee923f7c6de2797e777fd668797eed0d77cc /modules/mono | |
parent | 607b230ffe120b2757c56bd3d52a7a0d4e502cfe (diff) | |
download | redot-engine-beaf2b18ceaee3833e18b5b8ff90a08450fa2725.tar.gz |
Fix doc on Vector2.cs's / operator
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs index 50bf56d832..f5b64ff81b 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs @@ -869,7 +869,7 @@ namespace Godot } /// <summary> - /// Multiplies each component of the <see cref="Vector2"/> + /// Divides each component of the <see cref="Vector2"/> /// by the given <see cref="real_t"/>. /// </summary> /// <param name="vec">The dividend vector.</param> |