We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1484bf3 + 2e138e5 commit 7e11733Copy full SHA for 7e11733
1 file changed
rust-patterns-book/src/ch02-traits-in-depth.md
@@ -335,13 +335,13 @@ A `&dyn Trait` (or `Box<dyn Trait>`) is a **fat pointer** — two machine words:
335
│ ↓ │ ↓ │
336
│ ┌─────────┐ │ ┌──────────────────────────────┐ │
337
│ │ Circle │ │ │ vtable for <Circle as │ │
338
-│ │ { │ │ │ Drawable> │ │
+│ │ { │ │ │ Drawable> │ │
339
│ │ r: 5.0 │ │ │ │ │
340
│ │ } │ │ │ drop_in_place: 0x7f...a0 │ │
341
-│ └─────────┘ │ │ size: 8 │ │
342
-│ │ │ align: 8 │ │
343
-│ │ │ draw: 0x7f...b4 │ │
344
-│ │ │ bounding_box: 0x7f...c8 │ │
+│ └─────────┘ │ │ size: 8 │ │
+│ │ │ align: 8 │ │
+│ │ │ draw: 0x7f...b4 │ │
+│ │ │ bounding_box: 0x7f...c8 │ │
345
│ │ └──────────────────────────────┘ │
346
└──────────────┴───────────────────────────────────┘
347
```
0 commit comments