Skip to content

Commit 0ee1b99

Browse files
committed
Rollup merge of #31987 - gcatlin:patch-1, r=steveklabnik
r? @steveklabnik
2 parents c98c1b7 + dcb92ab commit 0ee1b99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/book/unsafe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Rust’s main draw is its powerful static guarantees about behavior. But safety
44
checks are conservative by nature: there are some programs that are actually
55
safe, but the compiler is not able to verify this is true. To write these kinds
66
of programs, we need to tell the compiler to relax its restrictions a bit. For
7-
this, Rust has a keyword, `unsafe`. Code using `unsafe` has less restrictions
7+
this, Rust has a keyword, `unsafe`. Code using `unsafe` has fewer restrictions
88
than normal code does.
99

1010
Let’s go over the syntax, and then we’ll talk semantics. `unsafe` is used in

0 commit comments

Comments
 (0)