Skip to content

Commit 8d1a93f

Browse files
committed
Add links from GDScript keywords table to relevant sections
1 parent 82ced4a commit 8d1a93f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tutorials/scripting/gdscript/gdscript_basics.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -184,17 +184,17 @@ in case you want to take a look under the hood.
184184
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
185185
| super | Resolves the scope of the parent method. See `Inheritance`_. |
186186
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
187-
| signal | Defines a signal. |
187+
| signal | Defines a signal. See `Signals`_. |
188188
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
189-
| func | Defines a function. |
189+
| func | Defines a function. See `Functions`_. |
190190
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
191191
| static | Defines a static function or a static member variable. |
192192
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
193-
| const | Defines a constant. |
193+
| const | Defines a constant. See `Constants`_. |
194194
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
195-
| enum | Defines an enum. |
195+
| enum | Defines an enum. See `Enums`_. |
196196
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
197-
| var | Defines a variable. |
197+
| var | Defines a variable. See `Variables`_. |
198198
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------+
199199
| breakpoint | Editor helper for debugger breakpoints. Unlike breakpoints created by clicking in the gutter, ``breakpoint`` is stored in the script itself. |
200200
| | This makes it persistent across different machines when using version control. |

0 commit comments

Comments
 (0)