Add a missing rust syntax annotation

This commit is contained in:
Carol (Nichols || Goulding) 2016-08-19 13:19:22 -04:00
parent 2b87c56f35
commit a505ae2fbd

View File

@ -140,7 +140,7 @@ that you already know, except without the `struct` keyword and they are grouped
together under the `Message` type. These structs could hold the same data that
these enum variants hold:
```
```rust
struct QuitMessage; // unit struct
struct MoveMessage {
x: i32,