Skip to content
Permalink
Browse files

mutability fixes

  • Loading branch information...
steveklabnik committed Apr 14, 2015
1 parent 8b6987a commit 6476a1e37844f6d1cd63914df616ae577fa6fc64
Showing with 4 additions and 4 deletions.
  1. +4 −4 src/doc/trpl/structs.md
@@ -55,8 +55,8 @@ fn main() {

This will print `The point is at (5, 0)`.

Rust does not support mutability at the field level, so you cannot write
something like this:
Rust does not support field mutability at the language level, so you cannot
write something like this:

```rust,ignore
struct Point {
@@ -82,8 +82,8 @@ fn main() {
point.x = 5;
let point = point; // this new binding is immutable
let point = point; // this new binding cant change now
point.y = 6; // this causes an error, because `point` is immutable!
point.y = 6; // this causes an error
}
```

0 comments on commit 6476a1e

Please sign in to comment.
You can’t perform that action at this time.