diff --git a/tutorial_gdscript_efficiently.md b/tutorial_gdscript_efficiently.md index a82602c..fc3f915 100644 --- a/tutorial_gdscript_efficiently.md +++ b/tutorial_gdscript_efficiently.md @@ -201,7 +201,7 @@ d["age"]=11 # modification d.erase("name") #removal ``` -Two-dimensional arrays can often be implemented easier with dictionaries. Here's a simple battleship game example: +In most cases, two-dimensional arrays can often be implemented more easily with dictionaries. Here's a simple battleship game example: ```python #battleship game