瀏覽代碼

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

Add singular "Signal" meta keyword to signal tutorials
Rémi Verschelde 5 年之前
父節點
當前提交
ed79c39ee9
共有 2 個文件被更改,包括 7 次插入1 次删除
  1. 4 1
      getting_started/step_by_step/signals.rst
  2. 3 0
      tutorials/misc/instancing_with_signals.rst

+ 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