We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7927ff commit 5f4b0ffCopy full SHA for 5f4b0ff
src/libcore/ops.rs
@@ -184,7 +184,7 @@ use marker::Unsize;
184
/// `drop` method will be called for `Outer` and then the `drop` method for
185
/// `Inner` will be called. Therefore `main` prints `Dropping Outer!` and then
186
/// `Dropping Inner!`.
187
-///
+///
188
/// ```
189
/// struct Inner;
190
/// struct Outer(Inner);
@@ -211,7 +211,7 @@ use marker::Unsize;
211
///
212
213
/// struct PrintOnDrop(&'static str);
214
215
/// fn main() {
216
/// let _first = PrintOnDrop("Declared first!");
217
/// let _second = PrintOnDrop("Declared second!");
0 commit comments