From efcf90deeec9663b259cd058cb0c94f1b8b5377d Mon Sep 17 00:00:00 2001 From: Miguel Ojeda Date: Wed, 25 Sep 2024 16:54:35 +0200 Subject: [PATCH] Unstable features: the `alloc` section should be one level higher Signed-off-by: Miguel Ojeda --- src/Unstable-features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Unstable-features.md b/src/Unstable-features.md index f4cdb46..017c6dd 100644 --- a/src/Unstable-features.md +++ b/src/Unstable-features.md @@ -36,7 +36,7 @@ If you would like to use a new Rust unstable feature in the kernel, then please In order to catch any unexpected changes that would break the kernel's usage of unstable features, the kernel is build-tested in the pre-merge Rust project CI. Please see the [Rust version policy](Rust-version-policy.md) page for details. -### `alloc` (older releases) +## `alloc` (older releases) [`alloc`](https://doc.rust-lang.org/alloc/) is part of the Rust standard library and its implementation uses many unstable features. Normally, this library (as well as [`core`](https://doc.rust-lang.org/core/) and others) is provided by the compiler, and thus those unstable features do not break users' code.