Skip to content

Commit d884e3e

Browse files
committed
Correction on usage of Dictionaries in C# as it should be 'Godot.Collections.Dictionary<>'
1 parent 4f1dbbc commit d884e3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/scripting/resources.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ Now, select the :ref:`CharacterBody3D <class_CharacterBody3D>` node which we nam
337337
[GlobalClass]
338338
public partial class BotStatsTable : Resource
339339
{
340-
private Godot.Dictionary<string, BotStats> _stats = new Godot.Dictionary<string, BotStats>();
340+
private Godot.Collections.Dictionary<string, BotStats> _stats = new Godot.Collections.Dictionary<string, BotStats>();
341341

342342
public BotStatsTable()
343343
{

0 commit comments

Comments
 (0)