diff --git a/doc/classes/EditorInspectorPlugin.xml b/doc/classes/EditorInspectorPlugin.xml
index 8f2a86c16a9..1cffde415b5 100644
--- a/doc/classes/EditorInspectorPlugin.xml
+++ b/doc/classes/EditorInspectorPlugin.xml
@@ -13,13 +13,14 @@
On each of these calls, the "add" functions can be called.
+ https://docs.godotengine.org/en/3.3/tutorials/plugins/editor/inspector_plugins.html
- Adds a custom control, not necessarily a property editor.
+ Adds a custom control, which is not necessarily a property editor.
@@ -27,7 +28,7 @@
- Adds a property editor, this must inherit [EditorProperty].
+ Adds a property editor for an individual property. The [code]editor[/code] control must extend [EditorProperty].
@@ -36,7 +37,7 @@
- Adds an editor that allows modifying multiple properties, this must inherit [EditorProperty].
+ Adds an editor that allows modifying multiple properties. The [code]editor[/code] control must extend [EditorProperty].
diff --git a/doc/classes/EditorProperty.xml b/doc/classes/EditorProperty.xml
index ab544bd4620..fd916f871d5 100644
--- a/doc/classes/EditorProperty.xml
+++ b/doc/classes/EditorProperty.xml
@@ -41,14 +41,14 @@
- Override if you want to allow a custom tooltip over your property.
+ Must be implemented to provide a custom tooltip to the property editor.
- Adds controls with this function if you want them on the bottom (below the label).
+ Puts the [code]editor[/code] control below the property label. The control must be previously added using [method Node.add_child].