Jelajahi Sumber

Added escaped spaces to fix inline literals

Omicron 7 tahun lalu
induk
melakukan
6d12ee18f1
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      getting_started/scripting/gdscript/gdscript_basics.rst

+ 2 - 2
getting_started/scripting/gdscript/gdscript_basics.rst

@@ -331,8 +331,8 @@ Built-in types
 
 Built-in types are stack-allocated. They are passed as values.
 This means a copy is created on each assignment or when passing them as arguments to functions.
-The only exceptions are ``Array``s and ``Dictionaries``, which are passed by reference so they are shared.
-(Not ``PoolArray``s like ``PoolByteArray`` though, those are passed as values too,
+The only exceptions are ``Array``\ s and ``Dictionaries``, which are passed by reference so they are shared.
+(Not ``PoolArray``\ s like ``PoolByteArray`` though, those are passed as values too,
 so consider this when deciding which to use!)
 
 Basic built-in types