@@ -343,10 +343,10 @@ The type of an _unsuffixed_ integer literal is determined by type inference:
343
343
* If an integer type can be _ uniquely_ determined from the surrounding
344
344
program context, the unsuffixed integer literal has that type.
345
345
346
- * If the program context underconstrains the type, it defaults to the
346
+ * If the program context under-constrains the type, it defaults to the
347
347
signed 32-bit integer ` i32 ` .
348
348
349
- * If the program context overconstrains the type, it is considered a
349
+ * If the program context over-constrains the type, it is considered a
350
350
static type error.
351
351
352
352
Examples of integer literals of various forms:
@@ -382,9 +382,9 @@ type inference:
382
382
surrounding program context, the unsuffixed floating-point literal
383
383
has that type.
384
384
385
- * If the program context underconstrains the type, it defaults to ` f64 ` .
385
+ * If the program context under-constrains the type, it defaults to ` f64 ` .
386
386
387
- * If the program context overconstrains the type, it is considered a
387
+ * If the program context over-constrains the type, it is considered a
388
388
static type error.
389
389
390
390
Examples of floating-point literals of various forms:
@@ -1292,7 +1292,7 @@ All access to a static is safe, but there are a number of restrictions on
1292
1292
statics:
1293
1293
1294
1294
* Statics may not contain any destructors.
1295
- * The types of static values must ascribe to ` Sync ` to allow threadsafe access.
1295
+ * The types of static values must ascribe to ` Sync ` to allow thread-safe access.
1296
1296
* Statics may not refer to other statics by value, only by reference.
1297
1297
* Constants cannot refer to statics.
1298
1298
@@ -1694,7 +1694,7 @@ explain, here's a few use cases and what they would entail:
1694
1694
* A crate needs a global available "helper module" to itself, but it doesn't
1695
1695
want to expose the helper module as a public API. To accomplish this, the
1696
1696
root of the crate's hierarchy would have a private module which then
1697
- internally has a "public api ". Because the entire crate is a descendant of
1697
+ internally has a "public API ". Because the entire crate is a descendant of
1698
1698
the root, then the entire local crate can access this private module through
1699
1699
the second case.
1700
1700
@@ -3987,7 +3987,7 @@ In general, `--crate-type=bin` or `--crate-type=lib` should be sufficient for
3987
3987
all compilation needs, and the other options are just available if more
3988
3988
fine-grained control is desired over the output format of a Rust crate.
3989
3989
3990
- # Appendix: Rationales and design tradeoffs
3990
+ # Appendix: Rationales and design trade-offs
3991
3991
3992
3992
* TODO* .
3993
3993
@@ -3997,7 +3997,7 @@ Rust is not a particularly original language, with design elements coming from
3997
3997
a wide range of sources. Some of these are listed below (including elements
3998
3998
that have since been removed):
3999
3999
4000
- * SML, OCaml: algebraic datatypes , pattern matching, type inference,
4000
+ * SML, OCaml: algebraic data types , pattern matching, type inference,
4001
4001
semicolon statement separation
4002
4002
* C++: references, RAII, smart pointers, move semantics, monomorphisation,
4003
4003
memory model
0 commit comments