I'm guessing the path dependency section got added in between. Also
linked to the Travis CI rust docs and removed the hyphen since Travis CI
seems to spell it without.
[testing]: https://doc.rust-lang.org/book/testing.html
+## Travis CI
+
+To test your project on Travis CI, here is a sample `.travis.yml` file:
+
+```
+language: rust
+```
+
+Please see the [Travis CI Rust documentation](https://docs.travis-ci.com/user/languages/rust/)
+for more information.
+
# Path Dependencies
Over time our `hello_world` project has grown significantly in size! It’s gotten
[dependencies]
hello_utils = { path = "hello_utils", version = "0.1.0" }
```
-
-## Travis-CI
-
-To test your project on Travis-CI, here is a sample `.travis.yml` file:
-
-```
-language: rust
-```