@@ -161,7 +161,7 @@ Comments in Rust code follow the general C++ style of line and block-comment for
161
161
with no nesting of block-comment delimiters.
162
162
163
163
Line comments beginning with exactly _ three_ slashes (` /// ` ), and block
164
- comments beginning with a exactly one repeated asterisk in the block-open
164
+ comments beginning with exactly one repeated asterisk in the block-open
165
165
sequence (` /** ` ), are interpreted as a special syntax for ` doc `
166
166
[ attributes] ( #attributes ) . That is, they are equivalent to writing
167
167
` #[doc="..."] ` around the body of the comment (this includes the comment
@@ -365,7 +365,7 @@ of integer literal suffix:
365
365
give the literal the corresponding machine type.
366
366
367
367
The type of an _ unsuffixed_ integer literal is determined by type inference.
368
- If a integer type can be _ uniquely_ determined from the surrounding program
368
+ If an integer type can be _ uniquely_ determined from the surrounding program
369
369
context, the unsuffixed integer literal has that type. If the program context
370
370
underconstrains the type, the unsuffixed integer literal's type is ` int ` ; if
371
371
the program context overconstrains the type, it is considered a static type
@@ -2184,7 +2184,7 @@ Supported traits for `deriving` are:
2184
2184
* ` Hash ` , to iterate over the bytes in a data type.
2185
2185
* ` Rand ` , to create a random instance of a data type.
2186
2186
* ` Default ` , to create an empty instance of a data type.
2187
- * ` Zero ` , to create an zero instance of a numeric data type.
2187
+ * ` Zero ` , to create a zero instance of a numeric data type.
2188
2188
* ` FromPrimitive ` , to create an instance from a numeric primitive.
2189
2189
* ` Show ` , to format a value using the ` {} ` formatter.
2190
2190
0 commit comments