From a2e4bbfdfbdb195bf134e5a53174d7d4ab027b1f Mon Sep 17 00:00:00 2001 From: Ross MacArthur Date: Tue, 28 Jul 2020 22:32:11 +0200 Subject: [PATCH] Update TOML link to official website --- src/ch01-03-hello-cargo.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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