From 0f4a5ae4ee4a46188b8ddc39078c0f2c17434d5c Mon Sep 17 00:00:00 2001 From: eska Date: Thu, 11 Feb 2016 18:39:20 +0100 Subject: [PATCH] Fix character references --- reference/binary_serialization_api.rst | 8 ++++---- reference/gdscript.rst | 8 ++++---- reference/richtextlabel_bbcode.rst | 2 +- tutorials/asset_pipeline/exporting_projects.rst | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/reference/binary_serialization_api.rst b/reference/binary_serialization_api.rst index f8cbd4f0c..d630847f1 100644 --- a/reference/binary_serialization_api.rst +++ b/reference/binary_serialization_api.rst @@ -333,7 +333,7 @@ This field is padded to 4 bytes. +----------+-------+-----------+-----------------------------------------------------------------------------------------+ | Offset | Len | Type | Description | +==========+=======+===========+=========================================================================================+ -| 4 | 4 | Integer | String Length, or New Format (val&0x80000000!=0 and NameCount=val&0x7FFFFFFF) | +| 4 | 4 | Integer | String Length, or New Format (val&0x80000000!=0 and NameCount=val&0x7FFFFFFF) | +----------+-------+-----------+-----------------------------------------------------------------------------------------+ For old format: @@ -355,7 +355,7 @@ For new format: +==========+=======+===========+=====================================+ | 4 | 4 | Integer | Sub-Name Count | +----------+-------+-----------+-------------------------------------+ -| 8 | 4 | Integer | Flags (absolute: val&1 != 0 ) | +| 8 | 4 | Integer | Flags (absolute: val&1 != 0 ) | +----------+-------+-----------+-------------------------------------+ For each Name and Sub-Name @@ -385,7 +385,7 @@ Every name string is is padded to 4 bytes. +----------+-------+-----------+---------------------------------------------------------------------+ | Offset | Len | Type | Description | +==========+=======+===========+=====================================================================+ -| 4 | 4 | Integer | val&0x7FFFFFFF = elements, val&0x80000000 = shared (bool) | +| 4 | 4 | Integer | val&0x7FFFFFFF = elements, val&0x80000000 = shared (bool) | +----------+-------+-----------+---------------------------------------------------------------------+ | Then what follows is, for amount of "elements", pairs of key and @@ -398,7 +398,7 @@ Every name string is is padded to 4 bytes. +----------+-------+-----------+---------------------------------------------------------------------+ | Offset | Len | Type | Description | +==========+=======+===========+=====================================================================+ -| 4 | 4 | Integer | val&0x7FFFFFFF = elements, val&0x80000000 = shared (bool) | +| 4 | 4 | Integer | val&0x7FFFFFFF = elements, val&0x80000000 = shared (bool) | +----------+-------+-----------+---------------------------------------------------------------------+ | Then what follows is, for amount of "elements", values one after the diff --git a/reference/gdscript.rst b/reference/gdscript.rst index 28f7b092b..d9bf4a17c 100644 --- a/reference/gdscript.rst +++ b/reference/gdscript.rst @@ -163,7 +163,7 @@ The following is the list of supported operators and their precedence +---------------------------------------------------------------+-----------------------------------------+ | ``^`` | Bitwise XOR | +---------------------------------------------------------------+-----------------------------------------+ -| ``|`` | Bitwise OR | +| ``|`` | Bitwise OR | +---------------------------------------------------------------+-----------------------------------------+ | ``<`` ``>`` ``==`` ``!=`` ``>=`` ``<=`` | Comparisons | +---------------------------------------------------------------+-----------------------------------------+ @@ -173,9 +173,9 @@ The following is the list of supported operators and their precedence +---------------------------------------------------------------+-----------------------------------------+ | ``and`` ``&&`` | Boolean AND | +---------------------------------------------------------------+-----------------------------------------+ -| ``or`` ``||`` | Boolean OR | +| ``or`` ``||`` | Boolean OR | +---------------------------------------------------------------+-----------------------------------------+ -| ``=`` ``+=`` ``-=`` ``*=`` ``/=`` ``%=`` ``&=`` ``|=`` | Assignment, Lowest Priority | +| ``=`` ``+=`` ``-=`` ``*=`` ``/=`` ``%=`` ``&=`` ``|=`` | Assignment, Lowest Priority | +---------------------------------------------------------------+-----------------------------------------+ Literals @@ -194,7 +194,7 @@ Literals +--------------------------+--------------------------------+ | ``"""Hello, Dude"""`` | Multiline string | +--------------------------+--------------------------------+ -| ``@"Node/Label"`` | NodePath or StringName | +| ``@"Node/Label"`` | NodePath or StringName | +--------------------------+--------------------------------+ Comments diff --git a/reference/richtextlabel_bbcode.rst b/reference/richtextlabel_bbcode.rst index 820c185e4..321c552d8 100644 --- a/reference/richtextlabel_bbcode.rst +++ b/reference/richtextlabel_bbcode.rst @@ -48,7 +48,7 @@ Reference +-----------------+--------------------------------------------+--------------------------------------------------------------+ | **font** | ``[font=]{text}[/font]`` | Use custom font at for {text}. | +-----------------+--------------------------------------------+--------------------------------------------------------------+ -| **color** | ``[color=<code/name>]{text}[/color]`` | Change {text} color, use # format such as #ff00ff or name. | +| **color** | ``[color=]{text}[/color]`` | Change {text} color, use # format such as #ff00ff or name. | +-----------------+--------------------------------------------+--------------------------------------------------------------+ Built-In Color Names diff --git a/tutorials/asset_pipeline/exporting_projects.rst b/tutorials/asset_pipeline/exporting_projects.rst index 61547d301..c5a955900 100644 --- a/tutorials/asset_pipeline/exporting_projects.rst +++ b/tutorials/asset_pipeline/exporting_projects.rst @@ -121,7 +121,7 @@ creates the package. There are 3 different modes for exporting: offers total control of what is exported. Individual resources can be selected and dependency detection is performed to ensure that everything needed is added. As a plus, this mode allows to - "Bundle" scenes and dependencies into a single file, which is + "Bundle" scenes and dependencies into a single file, which is *really* useful for games distributed on optical media. .. image:: /img/expselected.png