Skip to content

Commit dcb92ab

Browse files
committed
grammar: 'fewer' instead of 'less'
1 parent 0a52494 commit dcb92ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/book/unsafe.md

Lines changed: 1 addition & 1 deletion
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)