Skip to content
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
6 changes: 3 additions & 3 deletions src/static-guarantees/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Static Guarantees

It's Rust's type system what prevents data races at compile time (see [`Send`]
and [`Sync`] traits). The type system can also be used to check other properties
at compile time; reducing the need for runtime checks in some cases.
Rust's type system prevents data races at compile time (see [`Send`] and
[`Sync`] traits). The type system can also be used to check other properties at
compile time; reducing the need for runtime checks in some cases.

[`Send`]: https://doc.rust-lang.org/core/marker/trait.Send.html
[`Sync`]: https://doc.rust-lang.org/core/marker/trait.Sync.html
Expand Down