From c320aa4ddc2acb6a71fe0ed00b34aaae4aadd1b0 Mon Sep 17 00:00:00 2001 From: Travis Cross Date: Sun, 21 Jul 2024 10:20:49 +0000 Subject: [PATCH] Capitalize the "unsafe" in "unsafe extern" For better parity with "Unsafe attributes", e.g. in the table of contents, let's similarly capitalize the "unsafe" in "unsafe extern". --- src/SUMMARY.md | 2 +- src/rust-2024/unsafe-extern.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 27ae94d9..8b2b4973 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -50,5 +50,5 @@ - [`gen` keyword](rust-2024/gen-keyword.md) - [Macro fragment specifiers](rust-2024/macro-fragment-specifiers.md) - [Never type fallback change](rust-2024/never-type-fallback.md) - - [`unsafe extern` blocks](rust-2024/unsafe-extern.md) + - [Unsafe `extern` blocks](rust-2024/unsafe-extern.md) - [Unsafe attributes](rust-2024/unsafe-attributes.md) diff --git a/src/rust-2024/unsafe-extern.md b/src/rust-2024/unsafe-extern.md index 8c422a00..1ba5fb80 100644 --- a/src/rust-2024/unsafe-extern.md +++ b/src/rust-2024/unsafe-extern.md @@ -1,4 +1,4 @@ -# `unsafe extern` blocks +# Unsafe `extern` blocks 🚧 The 2024 Edition has not yet been released and hence this section is still "under construction". More information may be found in the tracking issue at .