diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml
index 7c5b676cf22..389fb649007 100644
--- a/doc/classes/Object.xml
+++ b/doc/classes/Object.xml
@@ -398,7 +398,7 @@
- Removes a given entry from the object's metadata.
+ Removes a given entry from the object's metadata. See also [method set_meta].
@@ -467,7 +467,8 @@
- Adds or changes a given entry in the object's metadata. Metadata are serialized, and can take any [Variant] value.
+ Adds, changes or removes a given entry in the object's metadata. Metadata are serialized and can take any [Variant] value.
+ To remove a given entry from the object's metadata, use [method remove_meta]. Metadata is also removed if its value is set to [code]null[/code]. This means you can also use [code]set_meta("name", null)[/code] to remove metadata for [code]"name"[/code].