Skip to content

Commit eeec4d1

Browse files
committed
Fix incorrect link in deprecated utilities
1 parent 28e158c commit eeec4d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

godot-core/src/global/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,19 @@ use crate::obj::Gd;
4242
// Reminder: remove #![allow(deprecated)] in utilities.test along with the below functions.
4343

4444
#[deprecated = "Instance utilities in `godot::global` will be removed. Use methods on `Gd` and `InstanceId` instead.\n\
45-
For detailed reasons, see https://github.com/godot-rust/gdext/pull/892."]
45+
For detailed reasons, see https://github.com/godot-rust/gdext/pull/901."]
4646
pub fn instance_from_id(instance_id: i64) -> Option<Gd<crate::classes::Object>> {
4747
crate::gen::utilities::instance_from_id(instance_id)
4848
}
4949

5050
#[deprecated = "Instance utilities in `godot::global` will be removed. Use methods on `Gd` and `InstanceId` instead.\n\
51-
For detailed reasons, see https://github.com/godot-rust/gdext/pull/892."]
51+
For detailed reasons, see https://github.com/godot-rust/gdext/pull/901."]
5252
pub fn is_instance_valid(instance: Variant) -> bool {
5353
crate::gen::utilities::is_instance_valid(&instance)
5454
}
5555

5656
#[deprecated = "Instance utilities in `godot::global` will be removed. Use methods on `Gd` and `InstanceId` instead.\n\
57-
For detailed reasons, see https://github.com/godot-rust/gdext/pull/892."]
57+
For detailed reasons, see https://github.com/godot-rust/gdext/pull/901."]
5858
pub fn is_instance_id_valid(instance_id: i64) -> bool {
5959
crate::gen::utilities::is_instance_id_valid(instance_id)
6060
}

0 commit comments

Comments
 (0)