diff options
| author | Akshay Chiwhane <achiwhane@gmail.com> | 2015-06-05 09:56:42 -0400 |
|---|---|---|
| committer | Akshay Chiwhane <achiwhane@gmail.com> | 2015-06-05 09:56:42 -0400 |
| commit | ac3301ec3b71daee43a0ad5d671767d44d3280a4 (patch) | |
| tree | b863d07d5e06ec3ba7be9ac03733576637e155a1 | |
| parent | 455b93151dc3cedfdc7af5e066627da72a8532c4 (diff) | |
| download | rust-ac3301ec3b71daee43a0ad5d671767d44d3280a4.tar.gz rust-ac3301ec3b71daee43a0ad5d671767d44d3280a4.zip | |
fix some errors
| -rw-r--r-- | src/doc/trpl/hello-cargo.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/hello-cargo.md b/src/doc/trpl/hello-cargo.md index 381d7922606..32002ebd1ec 100644 --- a/src/doc/trpl/hello-cargo.md +++ b/src/doc/trpl/hello-cargo.md @@ -34,7 +34,7 @@ $ mv main.rs src/main.rs Note that since we're creating an executable, we used `main.rs`. If we want to make a library instead, we should use `lib.rs`. This convention is required -for Cargo to successfully compile our projects. +for Cargo to successfully compile our projects, but it can be overridden if we wish. Custom file locations for the entry point can be specified with a [`[[lib]]` or `[[bin]]`][crates-custom] key in the TOML file described below. @@ -64,7 +64,7 @@ authors = [ "Your name <you@example.com>" ] ``` This file is in the [TOML][toml] format. TOML is similar to INI, but has some -extra goodies. According to the Rust docs, +extra goodies. According to the TOML docs, > TOML aims to be a minimal configuration file format that's easy to read due > to obvious semantics. TOML is designed to map unambiguously to a hash table. |
