diff options
| author | Dan Connolly <dckc@madmode.com> | 2013-09-30 22:57:09 -0500 |
|---|---|---|
| committer | Dan Connolly <dckc@madmode.com> | 2013-09-30 22:57:09 -0500 |
| commit | 398e2c479a67ba0646b0c1ebde6ff0fac3f25522 (patch) | |
| tree | d1898619eee571007352548de19ff1c4821e4b0d /doc/tutorial-rustpkg.md | |
| parent | bc6dd906a9075f694f562c753e165e1d108e6ec3 (diff) | |
| download | rust-398e2c479a67ba0646b0c1ebde6ff0fac3f25522.tar.gz rust-398e2c479a67ba0646b0c1ebde6ff0fac3f25522.zip | |
clarify that rust_pkg is a place-holder
the switch from package `hello` to `rust_pkg` is a little jarring; I'd use <var> but I don't see how. ALL_CAPS seems like a reasonable poor-man's <var>.
Diffstat (limited to 'doc/tutorial-rustpkg.md')
| -rw-r--r-- | doc/tutorial-rustpkg.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/tutorial-rustpkg.md b/doc/tutorial-rustpkg.md index f1cf78fc630..156613cef4d 100644 --- a/doc/tutorial-rustpkg.md +++ b/doc/tutorial-rustpkg.md @@ -35,11 +35,11 @@ This makes sense, as we haven't gotten it from anywhere yet! Luckily for us, used like this: ~~~ {.notrust} -$ rustpkg install pkg_id +$ rustpkg install PKG_ID ~~~ -This will install a package named 'pkg_id' into your current Rust environment. -I called it 'pkg_id' in this example because `rustpkg` calls this a 'package +This will install a package named `PKG_ID` into your current Rust environment. +I called it `PKG_ID` in this example because `rustpkg` calls this a 'package identifier.' When using it with an external package like this, it's often a URI fragment. You see, Rust has no central authority for packages. You can build your own `hello` library if you want, and that's fine. We'd both host |
