Skip to content

Commit

Permalink
Fix an inconsitent coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
kanata2 committed May 6, 2017
1 parent ba21cd0 commit b58cb13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion first-edition/src/mutability.md
Expand Up @@ -152,7 +152,7 @@ let mut a = Point { x: 5, y: 6 };
a.x = 10;
let b = Point { x: 5, y: 6};
let b = Point { x: 5, y: 6 };
b.x = 10; // Error: cannot assign to immutable field `b.x`.
```
Expand Down

0 comments on commit b58cb13

Please sign in to comment.