Skip to content

Commit 1a65620

Browse files
authored
Merge pull request #654 from JosephTLyons/Fixed-wording-in-Rust-1.45-Blog-Post
Fixed wording in Rust 1.45 Blog Post
2 parents a6ce390 + 0447725 commit 1a65620

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

posts/2020-07-16-Rust-1.45.0.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ fn main() {
8686
```
8787

8888
On Rust 1.44.0, this happens to print "x: 0" on my machine. But it could
89-
print anything, or do anything: this is undefined behavior. But we have
90-
no `unsafe` code here. This is what we call a "soundness" bug, that is,
91-
it is a bug where the compiler does the wrong thing. We tag these bugs
92-
as
89+
print anything, or do anything: this is undefined behavior. But the `unsafe`
90+
keyword is not used within this block of code. This is what we call a
91+
"soundness" bug, that is, it is a bug where the compiler does the wrong thing.
92+
We tag these bugs as
9393
[I-unsound](https://github.com/rust-lang/rust/issues?q=is%3Aissue+is%3Aopen+label%3A%22I-unsound+%F0%9F%92%A5%22)
9494
on our issue tracker, and take them very seriously.
9595

0 commit comments

Comments
 (0)