@@ -161,7 +161,7 @@ Comments in Rust code follow the general C++ style of line and block-comment for
161161with no nesting of block-comment delimiters.
162162
163163Line 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
165165sequence (` /** ` ), are interpreted as a special syntax for ` doc `
166166[ attributes] ( #attributes ) . That is, they are equivalent to writing
167167` #[doc="..."] ` around the body of the comment (this includes the comment
@@ -365,7 +365,7 @@ of integer literal suffix:
365365 give the literal the corresponding machine type.
366366
367367The 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
369369context, the unsuffixed integer literal has that type. If the program context
370370underconstrains the type, the unsuffixed integer literal's type is ` int ` ; if
371371the program context overconstrains the type, it is considered a static type
@@ -2184,7 +2184,7 @@ Supported traits for `deriving` are:
21842184* ` Hash ` , to iterate over the bytes in a data type.
21852185* ` Rand ` , to create a random instance of a data type.
21862186* ` 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.
21882188* ` FromPrimitive ` , to create an instance from a numeric primitive.
21892189* ` Show ` , to format a value using the ` {} ` formatter.
21902190
0 commit comments