X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/8bfc2246138b487afeb99d9d3161951beda75910..a43cc90b79e0b17302c74982270e29a4b93f5f0f:/src/part14.rs diff --git a/src/part14.rs b/src/part14.rs index 189a906..2105838 100644 --- a/src/part14.rs +++ b/src/part14.rs @@ -69,7 +69,7 @@ fn sort_array() { // ## External Dependencies //@ This leaves us with just one more piece to complete rgrep: Taking arguments from the command-line. We could now directly work on -//@ [`std::env::args`](http://doc.rust-lang.org/stable/std/env/fn.args.html) to gain access to those arguments, and this would become +//@ [`std::env::args`](https://doc.rust-lang.org/stable/std/env/fn.args.html) to gain access to those arguments, and this would become //@ a pretty boring lesson in string manipulation. Instead, I want to use this opportunity to show how easy it is to benefit from //@ other people's work in your program. //@