1
Fork 0

grammar: 'fewer' instead of 'less'

This commit is contained in:
Geoff Catlin 2016-03-01 08:42:34 -05:00
parent 0a52494f7e
commit dcb92abbe1

View file

@ -4,7 +4,7 @@ Rusts main draw is its powerful static guarantees about behavior. But safety
checks are conservative by nature: there are some programs that are actually
safe, but the compiler is not able to verify this is true. To write these kinds
of programs, we need to tell the compiler to relax its restrictions a bit. For
this, Rust has a keyword, `unsafe`. Code using `unsafe` has less restrictions
this, Rust has a keyword, `unsafe`. Code using `unsafe` has fewer restrictions
than normal code does.
Lets go over the syntax, and then well talk semantics. `unsafe` is used in