Various grammar and spelling fixes

This commit is contained in:
A Thousand Ships
2025-06-23 16:37:26 +02:00
parent b2de954be7
commit 92cd36b50e
49 changed files with 84 additions and 84 deletions

View File

@@ -3,7 +3,7 @@
C# API differences to GDScript
==============================
This is a (incomplete) list of API differences between C# and GDScript.
This is an (incomplete) list of API differences between C# and GDScript.
General differences
-------------------

View File

@@ -223,7 +223,7 @@ an underscore (``_``) as a prefix for private fields (but not for methods or pro
.. code-block:: csharp
private Vector3 _aimingAt; // Use a `_` prefix for private fields.
private Vector3 _aimingAt; // Use an `_` prefix for private fields.
private void Attack(float attackStrength)
{