@@ -1032,7 +1032,7 @@ accessed through the components `x` and `y`, and laid out in memory with the
1032
1032
An _ enumeration item_ simultaneously declares a new nominal
1033
1033
[ enumerated type] ( #enumerated-types ) as well as a set of * constructors* that
1034
1034
can be used to create or pattern-match values of the corresponding enumerated
1035
- type. Note that ` enum ` previously was refered to as a ` tag ` , however this
1035
+ type. Note that ` enum ` previously was referred to as a ` tag ` , however this
1036
1036
definition has been deprecated. While ` tag ` is no longer used, the two are
1037
1037
synonymous.
1038
1038
@@ -1622,7 +1622,7 @@ fn avg(v: [float]) -> float {
1622
1622
~~~~
1623
1623
1624
1624
A cast is a * trivial cast* iff the type of the casted expression and the
1625
- target type are identical after replacing all occurences of ` int ` , ` uint ` ,
1625
+ target type are identical after replacing all occurrences of ` int ` , ` uint ` ,
1626
1626
` float ` with their machine type equivalents of the target architecture in both
1627
1627
types.
1628
1628
@@ -3131,7 +3131,7 @@ state. In this state it executes the statements of its entry function, and any
3131
3131
functions called by the entry function.
3132
3132
3133
3133
A task may transition from the * running* state to the * blocked* state any time
3134
- it makes a blocking recieve call on a port, or attempts a rate-limited
3134
+ it makes a blocking receive call on a port, or attempts a rate-limited
3135
3135
blocking send on a channel. When the communication expression can be completed
3136
3136
-- when a message arrives at a sender, or a queue drains sufficiently to
3137
3137
complete a rate-limited send -- then the blocked task will unblock and
@@ -3302,7 +3302,7 @@ As an example, to see all the logs generated by the compiler, you would set
3302
3302
you would set it to ` rustc::metadata::creader ` . To see just error logging
3303
3303
use ` rustc=0 ` .
3304
3304
3305
- Note that when compiling either ` .rs ` or ` .rc ` files that don't specifiy a
3305
+ Note that when compiling either ` .rs ` or ` .rc ` files that don't specify a
3306
3306
crate name the crate is given a default name that matches the source file,
3307
3307
with the extension removed. In that case, to turn on logging for a program
3308
3308
compiled from, e.g. ` helloworld.rs ` , ` RUST_LOG ` should be set to ` helloworld ` .
@@ -3390,7 +3390,7 @@ have come and gone during the course of Rust's development:
3390
3390
3391
3391
* The Newsqueak (1988), Alef (1995), and Limbo (1996) family. These
3392
3392
languages were developed by Rob Pike, Phil Winterbottom, Sean Dorward and
3393
- others in their group at Bell labs Computing Sciences Reserch Center
3393
+ others in their group at Bell labs Computing Sciences Research Center
3394
3394
(Murray Hill, NJ, USA).
3395
3395
3396
3396
* The Napier (1985) and Napier88 (1988) family. These languages were
0 commit comments