Skip to content

Fixed wording in Rust 1.45 Blog Post #654

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions posts/2020-07-16-Rust-1.45.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ fn main() {
```

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

Expand Down