From 6c4011f980c5fa1a09c5bfe2fd884ea8b93ad708 Mon Sep 17 00:00:00 2001 From: Aakarshit Uppal <26065812+aksh1618@users.noreply.github.com> Date: Thu, 16 Nov 2023 19:39:03 +0000 Subject: [PATCH] Fix broken link to split_at_mut in ch04-03 Leftover from d3ac605 --- src/ch04-03-fixing-ownership-errors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch04-03-fixing-ownership-errors.md b/src/ch04-03-fixing-ownership-errors.md index 05a8ab180b..2c836e5edb 100644 --- a/src/ch04-03-fixing-ownership-errors.md +++ b/src/ch04-03-fixing-ownership-errors.md @@ -452,7 +452,7 @@ When fixing an ownership error, you should ask yourself: is my program actually [rc]: https://doc.rust-lang.org/std/rc/index.html [cells]: https://doc.rust-lang.org/std/cell/index.html -[split_first_mut]: https://doc.rust-lang.org/std/primitive.slice.html#method.split_at_mut +[split_at_mut]: https://doc.rust-lang.org/std/primitive.slice.html#method.split_at_mut [unsafe]: ch19-01-unsafe-rust.html [`Vec::remove`]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.remove [iterators]: ch13-02-iterators.html