Skip to content

Commit 368d77a

Browse files
committed
Space out paragraphs
1 parent 341f86d commit 368d77a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

content/Rust-1.88.0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,13 @@ if let Channel::Stable(v) = release_info()
4949
```
5050

5151
Let chains are only available in the Rust 2024 edition, as this feature depends on the [`if let` temporary scope](https://doc.rust-lang.org/edition-guide/rust-2024/temporary-if-let-scope.html) change for more consistent drop order.
52+
5253
Earlier efforts tried to work with all editions, but some difficult edge cases threatened the integrity of the implementation. 2024 made it feasible, so please upgrade your crate's edition if you'd like to use this feature!
5354

5455
### Naked functions
5556

5657
Rust now supports writing naked functions with no compiler-generated epilogue and prologue, allowing full control over the generated assembly for a particular function. This is a more ergonomic alternative to defining functions in a `global_asm!` block. A naked function is marked with the `#[unsafe(naked)]` attribute, and its body consists of a single `naked_asm!` call.
58+
5759
For example:
5860

5961
```rust

0 commit comments

Comments
 (0)