Skip to content

Commit 197cec6

Browse files
committed
book: Rust is a language, so no need to mention that fact here
1 parent 1661947 commit 197cec6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/trpl/choosing-your-guarantees.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
% Choosing your Guarantees
22

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

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

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

43-
## `&T` and `&mut T`
43+
## `&T` and `&mut T`
4444

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

0 commit comments

Comments
 (0)