浏览代码

doc: More formatting fixes

Rémi Verschelde 6 年之前
父节点
当前提交
16288cabc0
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      doc/classes/EditorPlugin.xml

+ 2 - 2
doc/classes/EditorPlugin.xml

@@ -218,7 +218,7 @@
 				Must [code]return false[/code] in order to forward the [InputEvent] to other Editor classes. Example:
 				[codeblock]
 				# Consumes InputEventMouseMotion and forwards other InputEvent types
- 				func forward_canvas_gui_input(event):
+				func forward_canvas_gui_input(event):
 				    var forward = false
 				    if event is InputEventMouseMotion:
 				        forward = true
@@ -244,7 +244,7 @@
 				Must [code]return false[/code] in order to forward the [InputEvent] to other Editor classes. Example:
 				[codeblock]
 				# Consumes InputEventMouseMotion and forwards other InputEvent types
- 				func forward_spatial_gui_input(camera, event):
+				func forward_spatial_gui_input(camera, event):
 				    var forward = false
 				    if event is InputEventMouseMotion:
 				        forward = true