فهرست منبع

Merge pull request #1535 from YeldhamDev/conf_ide_fix

Fix section links in the 'Configuring an IDE' page
Rémi Verschelde 7 سال پیش
والد
کامیت
bab364b621
2فایلهای تغییر یافته به همراه7 افزوده شده و 1 حذف شده
  1. 6 0
      development/cpp/configuring_an_ide.rst
  2. 1 1
      getting_started/scripting/gdscript/gdscript_basics.rst

+ 6 - 0
development/cpp/configuring_an_ide.rst

@@ -17,6 +17,8 @@ Development Environment), here are setup instructions for some popular ones:
 
 It is possible to use other IDEs, but their setup is not documented yet.
 
+.. _doc_configuring_an_ide_qtcreator:
+
 Qt Creator
 ----------
 
@@ -92,6 +94,8 @@ clicking the "Apply Filter" button. A simple click on "Ok" and you're ready to c
 
 .. image:: img/qtcreator-edit-files-dialog.png
 
+.. _doc_configuring_an_ide_kdevelop:
+
 Kdevelop
 --------
 
@@ -153,6 +157,8 @@ platform and depending on your build options).
 That's it! Now you should be good to go :)
 
 
+.. _doc_configuring_an_ide_xcode:
+
 Xcode
 -----
 

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

@@ -973,7 +973,7 @@ This is better explained through examples. Say we have this scenario:
     extends "State.gd"
 
     func _init(e=null, m=null).(e):
-        # do something with e
+        # Do something with 'e'.
         message = m
 
 There are a few things to keep in mind here: