@@ -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 |