From 6f515e993ba54587a3adae583181d08c2e97de98 Mon Sep 17 00:00:00 2001 From: Salty Grndpa <53660556+tredstart@users.noreply.github.com> Date: Thu, 27 Mar 2025 13:48:12 +0100 Subject: [PATCH] Update tutorials/best_practices/data_preferences.rst remove unnecessary ';' Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> --- tutorials/best_practices/data_preferences.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/best_practices/data_preferences.rst b/tutorials/best_practices/data_preferences.rst index 700cc3503..1bfe478b6 100644 --- a/tutorials/best_practices/data_preferences.rst +++ b/tutorials/best_practices/data_preferences.rst @@ -105,7 +105,7 @@ Contiguous memory stores imply the following operation performance: though. Done by re-sorting the Array after every edit and writing an ordered-aware search algorithm. -Godot implements Dictionary as an ``HashMap;``. The engine +Godot implements Dictionary as an ``HashMap``. The engine stores a small array (initialized to 2^3 or 8 records) of key-value pairs. When one attempts to access a value, they provide it a key. It then *hashes* the key, i.e. converts it into a number. The "hash" is used to calculate the index