doc/guide/dependencies: Add a 'rust' language marker
authorW. Trevor King <wking@tremily.us>
Mon, 8 Jan 2018 21:56:54 +0000 (13:56 -0800)
committerW. Trevor King <wking@tremily.us>
Mon, 8 Jan 2018 21:56:54 +0000 (13:56 -0800)
This had been added to the non-book docs in 2ad45a56 ([doc] Sync back
doc/book changes into old docs, 2017-08-31, #4455), despite the fact
that the book didn't actually have that marker:

  $ git cat-file -p 2ad45a56:src/doc/book/src/guide/dependencies.md | grep -A2 'You can now use the'
  You can now use the `regex` library using `extern crate` in `main.rs`.

  ```

src/doc/src/guide/dependencies.md

index e199487f21e6c9cc09a1a05a38b4fde66c03c3e4..fc16eb614c4a8fe901cf358777198bb508e1dfd1 100644 (file)
@@ -70,7 +70,7 @@ we choose to `cargo update`.
 
 You can now use the `regex` library using `extern crate` in `main.rs`.
 
-```
+```rust
 extern crate regex;
 
 use regex::Regex;