From 406b1c196a08c69444351721a41bc73922f48c9b Mon Sep 17 00:00:00 2001 From: Bhuwan Pandit Date: Fri, 22 Nov 2024 15:27:06 +0000 Subject: [PATCH] docs(0005): typo fix in the challenge docs (#178) This PR, just fixes a typo for a function name in the challenge docs. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses. --- doc/src/challenges/0005-linked-list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/challenges/0005-linked-list.md b/doc/src/challenges/0005-linked-list.md index a5c931712025a..0215bbd029714 100644 --- a/doc/src/challenges/0005-linked-list.md +++ b/doc/src/challenges/0005-linked-list.md @@ -23,7 +23,7 @@ The memory safety of the following public functions that iterating over the inte | Function | Location | |---------|---------| -|clearn | alloc::collections::linked_list | +|clear| alloc::collections::linked_list | |contains| alloc::collections::linked_list | |split_off| alloc::collections::linked_list | |remove| alloc::collections::linked_list |