From 6d12ee18f13b744532af0f315e4e6fd077259e65 Mon Sep 17 00:00:00 2001 From: Omicron Date: Mon, 7 May 2018 21:40:53 +0200 Subject: [PATCH] Added escaped spaces to fix inline literals --- getting_started/scripting/gdscript/gdscript_basics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting_started/scripting/gdscript/gdscript_basics.rst b/getting_started/scripting/gdscript/gdscript_basics.rst index e79971469..fd4385b31 100644 --- a/getting_started/scripting/gdscript/gdscript_basics.rst +++ b/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