diff --git a/src/ch01-03-hello-cargo.md b/src/ch01-03-hello-cargo.md index e81f5b6d87..21984d2589 100644 --- a/src/ch01-03-hello-cargo.md +++ b/src/ch01-03-hello-cargo.md @@ -72,10 +72,8 @@ edition = "2018" Listing 1-2: Contents of *Cargo.toml* generated by `cargo new` -This file is in the [*TOML*][toml] (*Tom’s Obvious, Minimal -Language*) format, which is Cargo’s configuration format. - -[toml]: https://github.com/toml-lang/toml +This file is in the [*TOML*](https://toml.io) (*Tom’s Obvious, +Minimal Language*) format, which is Cargo’s configuration format. The first line, `[package]`, is a section heading that indicates that the following statements are configuring a package. As we add more information to