Skip to content

Commit

Permalink
Add missing quotation mark to NodePath example in builtins.md
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeFranceschini authored Jul 22, 2024
1 parent 2edaca2 commit 9c76baf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/godot-api/builtins.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Most builtins have a 1:1 equivalent (e.g. `Vector2f`, `Color` etc.). The followi
| `real` | `real` (either `f32` or `f64`) | `real!(3.14159)` |
| `String` | `GString` | `"Some string".into()` |
| `StringName` | `StringName` | `"MyClass".into()` |
| `NodePath` | `NodePath` | `Nodes/MyNode".into()` |
| `NodePath` | `NodePath` | `"Nodes/MyNode".into()` |
| `Array[T]` | `Array<T>` | `array![1, 2, 3]` |
| `Array` | `VariantArray`<br>or `Array<Variant>` | `varray![1, "two", true]` |
| `Dictionary` | `Dictionary` | `dict!{"key": "value"}` |
Expand Down

0 comments on commit 9c76baf

Please sign in to comment.