diff --git a/doc/classes/Callable.xml b/doc/classes/Callable.xml
index 05174abb07fa..e41174cdd9fe 100644
--- a/doc/classes/Callable.xml
+++ b/doc/classes/Callable.xml
@@ -203,7 +203,8 @@
- Returns [code]true[/code] if this [Callable] has no target to call the method on.
+ Returns [code]true[/code] if this [Callable] has no target to call the method on. Equivalent to [code]callable == Callable()[/code].
+ [b]Note:[/b] This is [i]not[/i] the same as [code]not is_valid()[/code] and using [code]not is_null()[/code] will [i]not[/i] guarantee that this callable can be called. Use [method is_valid] instead.
diff --git a/doc/classes/Signal.xml b/doc/classes/Signal.xml
index 07e15d0b237b..7d6ff1e9b0c1 100644
--- a/doc/classes/Signal.xml
+++ b/doc/classes/Signal.xml
@@ -119,7 +119,7 @@
- Returns [code]true[/code] if the signal's name does not exist in its object, or the object is not valid.
+ Returns [code]true[/code] if this [Signal] has no object and the signal name is empty. Equivalent to [code]signal == Signal()[/code].