Skip to content

Commit df439e9

Browse files
authored
fix and simplify language (#2528)
1 parent 81b3ce7 commit df439e9

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

book/src/tutorial-1.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@
33
First we need to declare a build-time dependency on `bindgen` by adding it to
44
the `[build-dependencies]` section of our crate's `Cargo.toml` file.
55

6-
Please always use the latest version of `bindgen`, it has the most fixes and
7-
best compatibility. At the time of writing the latest bindgen is `0.53.1`, but
8-
you can always check [the bindgen page of
9-
crates.io](https://crates.io/crates/bindgen) to verify the latest version if
10-
you're unsure.
6+
Please always use the latest version of `bindgen`, as it has the most fixes and
7+
best compatibility.
8+
You can always check the latest version at
9+
[the bindgen page in crates.io](https://crates.io/crates/bindgen).
1110

1211
```toml
1312
[build-dependencies]
14-
bindgen = "0.53.1"
13+
bindgen = "0.65.1"
1514
```
1615

1716
> ⚠️ **Warning**

0 commit comments

Comments
 (0)