Skip to content

Commit

Permalink
book: Rust is a language, so no need to mention that fact here
Browse files Browse the repository at this point in the history
  • Loading branch information
tshepang committed Sep 3, 2015
1 parent 1661947 commit 197cec6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/doc/trpl/choosing-your-guarantees.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
% Choosing your Guarantees

One important feature of Rust as language is that it lets us control the costs and guarantees
One important feature of Rust is that it lets us control the costs and guarantees
of a program.

There are various “wrapper type” abstractions in the Rust standard library which embody
Expand Down Expand Up @@ -40,7 +40,7 @@ allowed to share references to this by the regular borrowing rules, checked at c

[box]: ../std/boxed/struct.Box.html

## `&T` and `&mut T`
## `&T` and `&mut T`

These are immutable and mutable references respectively. They follow the “read-write lock”
pattern, such that one may either have only one mutable reference to some data, or any number of
Expand Down

0 comments on commit 197cec6

Please sign in to comment.