From fe99b15c13fe61ad8a67464bf93caa1fb8e360fc Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Fri, 15 Nov 2024 14:30:20 -0800 Subject: [PATCH] Fix some missing emdashes These list entries were missing an emdash like the rest of the entries. --- src/attributes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/attributes.md b/src/attributes.md index 69f1ec45e..f537e4cd2 100644 --- a/src/attributes.md +++ b/src/attributes.md @@ -293,8 +293,8 @@ The following is an index of all built-in attributes. - [`cold`] --- Hint that a function is unlikely to be called. - [`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 + - [`track_caller`] --- Pass the parent call location to `std::panic::Location::caller()`. + - [`instruction_set`] --- Specify the instruction set used to generate a functions code - Documentation - `doc` --- Specifies documentation. See [The Rustdoc Book] for more