diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml
index 02fd6dae30f..7b27f16d827 100644
--- a/doc/classes/Node.xml
+++ b/doc/classes/Node.xml
@@ -909,6 +909,9 @@
Notification received when the node is enabled again after being disabled. See [constant PROCESS_MODE_DISABLED].
+
+ Notification received when other nodes in the tree may have been removed/replaced and node pointers may require re-caching.
+
Notification received right before the scene with the node is saved in the editor. This notification is only sent in the Godot editor and will not occur in exported projects.
diff --git a/editor/editor_data.h b/editor/editor_data.h
index bce9dd345d5..5ef42da3c9c 100644
--- a/editor/editor_data.h
+++ b/editor/editor_data.h
@@ -203,7 +203,6 @@ public:
String get_scene_type(int p_idx) const;
void set_scene_path(int p_idx, const String &p_path);
Ref