Skip to content

Commit e687461

Browse files
author
Jonathan Turner
authored
Rollup merge of rust-lang#35781 - ErikUggeldahl:spellingfix, r=apasel422
Very minor spelling fix in the book Changed datastructure to data structure. r? @steveklabnik
2 parents f412ce0 + 6976991 commit e687461

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/book/borrow-and-asref.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ different. Here’s a quick refresher on what these two traits mean.
88

99
# Borrow
1010

11-
The `Borrow` trait is used when you’re writing a datastructure, and you want to
11+
The `Borrow` trait is used when you’re writing a data structure, and you want to
1212
use either an owned or borrowed type as synonymous for some purpose.
1313

1414
For example, [`HashMap`][hashmap] has a [`get` method][get] which uses `Borrow`:
@@ -86,7 +86,7 @@ We can see how they’re kind of the same: they both deal with owned and borrowe
8686
versions of some type. However, they’re a bit different.
8787

8888
Choose `Borrow` when you want to abstract over different kinds of borrowing, or
89-
when you’re building a datastructure that treats owned and borrowed values in
89+
when you’re building a data structure that treats owned and borrowed values in
9090
equivalent ways, such as hashing and comparison.
9191

9292
Choose `AsRef` when you want to convert something to a reference directly, and

0 commit comments

Comments
 (0)