diff options
| author | cyrgani <85427285+cyrgani@users.noreply.github.com> | 2024-06-25 13:37:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-25 13:37:22 +0200 |
| commit | c7b579a7cb4109f8397a9700523e26269cf6a2ed (patch) | |
| tree | d47011985507703d35151d5695d1de81e88421f1 | |
| parent | bda221a0eb5019a939e34e0f4583f1c4b6e5b862 (diff) | |
Add missing slash in const_eval_select doc comment
| -rw-r--r-- | library/core/src/intrinsics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/intrinsics.rs b/library/core/src/intrinsics.rs index 6b5054a9f06..9ba1c6a4154 100644 --- a/library/core/src/intrinsics.rs +++ b/library/core/src/intrinsics.rs @@ -2579,7 +2579,7 @@ extern "rust-intrinsic" { /// fn runtime() -> i32 { 1 } /// const fn compiletime() -> i32 { 2 } /// -// // ⚠ This code violates the required equivalence of `compiletime` +/// // ⚠ This code violates the required equivalence of `compiletime` /// // and `runtime`. /// const_eval_select((), compiletime, runtime) /// } |
