Przeglądaj źródła

Merge pull request #2625 from YeldhamDev/gdbasics_signals_note

Fix links in the note in "Signals" section of the "GDScripts basics" page
Rémi Verschelde 6 lat temu
rodzic
commit
ce6ac8af19

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

@@ -1481,10 +1481,10 @@ to. To create custom signals for a class, use the ``signal`` keyword.
 .. note:: 
 .. note:: 
 
 
    Signals are a `Callback
    Signals are a `Callback
-   <https://en.wikipedia.org/wiki/Callback_(computer_programming)>`
+   <https://en.wikipedia.org/wiki/Callback_(computer_programming)>`_
    mechanism. They also fill the role of Observers, a common programming
    mechanism. They also fill the role of Observers, a common programming
-   pattern. For more information, read the `Observer
-   tutorial<http://gameprogrammingpatterns.com/observer.html>`_ in the
+   pattern. For more information, read the `Observer tutorial
+   <https://gameprogrammingpatterns.com/observer.html>`_ in the
    Game Programming Patterns ebook.
    Game Programming Patterns ebook.
 
 
 You can connect these signals to methods the same way you connect built-in
 You can connect these signals to methods the same way you connect built-in