Minor grammar fixes to documentation

This commit is contained in:
Ninni Pipping
2023-05-28 18:10:39 +02:00
parent 28cca66d2c
commit 17fb77223c
8 changed files with 12 additions and 12 deletions

View File

@ -20,7 +20,7 @@
var boo = "Boo is a string!";
var ref = new RefCounted(); // var is especially useful when used together with a constructor.
// Godot also provides a Variant type that works like an union of all the Variant-compatible types.
// Godot also provides a Variant type that works like a union of all the Variant-compatible types.
Variant fooVar = 2; // fooVar is dynamically an integer (stored as a `long` in the Variant type).
fooVar = "Now fooVar is a string!";
fooVar = new RefCounted(); // fooVar is a GodotObject.