From 5b86d59b0c78e59ffe22b191dbfb128a89f350f3 Mon Sep 17 00:00:00 2001 From: Mohammed Rizin <50985248+morizin@users.noreply.github.com> Date: Thu, 31 Jul 2025 08:38:38 +0530 Subject: [PATCH] Update others.md --- en/src/type-conversions/others.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/type-conversions/others.md b/en/src/type-conversions/others.md index 3f06945c..4d69dfdf 100644 --- a/en/src/type-conversions/others.md +++ b/en/src/type-conversions/others.md @@ -80,7 +80,7 @@ fn main() { ``` ### Deref -You can find all the examples and exercises of the `Deref` trait [here](https://practice.rs/smart-pointers/deref.html). +You can find all the examples and exercises of the `Deref` trait [here](https://practice.course.rs/smart-pointers/deref.html). ### Transmute `std::mem::transmute` is a **unsafe function** can be used to reinterprets the bits of a value of one type as another type. Both of the original and the result types must have the same size and neither of them can be invalid.