Browse Source

Merge pull request #3354 from Calinou/add-signal-meta-keywords

Add singular "Signal" meta keyword to signal tutorials
Rémi Verschelde 5 years ago
parent
commit
ed79c39ee9

+ 4 - 1
getting_started/step_by_step/signals.rst

@@ -1,3 +1,6 @@
+.. meta::
+    :keywords: Signal
+
 .. _doc_signals:
 
 Signals
@@ -208,7 +211,7 @@ To emit a signal via code, use the ``emit_signal`` function:
             EmitSignal(nameof(MySignal));
         }
     }
-    
+
 A signal can also optionally declare one or more arguments. Specify the
 argument names between parentheses:
 

+ 3 - 0
tutorials/misc/instancing_with_signals.rst

@@ -1,3 +1,6 @@
+.. meta::
+    :keywords: Signal
+
 .. _doc_instancing_with_signals:
 
 Instancing with signals