From bc2849ee91837654fab55992854af810d815a365 Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Wed, 17 Dec 2025 21:47:51 -0800 Subject: [PATCH] attributes: add missing punctuation to instruction_set The short description for each built in attribute except `instruction_set` was terminated with a period; add the missing period. Add a missing apostrophe to "functions code" in that description. --- src/attributes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/attributes.md b/src/attributes.md index e5d9694447..5858781510 100644 --- a/src/attributes.md +++ b/src/attributes.md @@ -298,7 +298,7 @@ The following is an index of all built-in attributes. - [`no_builtins`] --- Disables use of certain built-in functions. - [`target_feature`] --- Configure platform-specific code generation. - [`track_caller`] --- Pass the parent call location to `std::panic::Location::caller()`. - - [`instruction_set`] --- Specify the instruction set used to generate a functions code + - [`instruction_set`] --- Specify the instruction set used to generate a function's code. - Documentation - `doc` --- Specifies documentation. See [The Rustdoc Book] for more