Rollup merge of #128766 - Monadic-Cat:patch-1, r=tgross35 · patricklam/verify-rust-std@b90a026 (original) (raw)

Original file line number Diff line number Diff line change
@@ -155,7 +155,7 @@ mod break_keyword {}
155 155 /// const WORDS: &str = "hello convenience!";
156 156 /// ```
157 157 ///
158 -/// `const` items looks remarkably similar to `static` items, which introduces some confusion as
158 +/// `const` items look remarkably similar to `static` items, which introduces some confusion as
159 159 /// to which one should be used at which times. To put it simply, constants are inlined wherever
160 160 /// they're used, making using them identical to simply replacing the name of the `const` with its
161 161 /// value. Static variables, on the other hand, point to a single location in memory, which all