about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYoshito Komatsu <ykomatsu@akaumigame.org>2015-10-07 16:07:42 +0900
committerYoshito Komatsu <ykomatsu@akaumigame.org>2015-10-07 16:07:42 +0900
commit03dfe89786d5bbb8ec5f467c48e73152f843136a (patch)
treebacf26931983b261114413611f2cda0c65090fb8
parentb2cc47ff94628da5451dbf65d503473f016b5a1e (diff)
downloadrust-03dfe89786d5bbb8ec5f467c48e73152f843136a.tar.gz
rust-03dfe89786d5bbb8ec5f467c48e73152f843136a.zip
Fix a typo
Add musl link
-rw-r--r--src/doc/trpl/advanced-linking.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/advanced-linking.md b/src/doc/trpl/advanced-linking.md
index 921f27336f2..9ef6d5c2bff 100644
--- a/src/doc/trpl/advanced-linking.md
+++ b/src/doc/trpl/advanced-linking.md
@@ -26,7 +26,7 @@ shells out to the system linker (`gcc` on most systems, `link.exe` on MSVC),
 so it makes sense to provide extra command line
 arguments, but this will not always be the case. In the future `rustc` may use
 LLVM directly to link native libraries, in which case `link_args` will have no
-meaning. You can achieve the same effect as the `link-args` attribute with the
+meaning. You can achieve the same effect as the `link_args` attribute with the
 `-C link-args` argument to `rustc`.
 
 It is highly recommended to *not* use this attribute, and rather use the more
@@ -71,7 +71,7 @@ Dynamic linking on Linux can be undesirable if you wish to use new library
 features on old systems or target systems which do not have the required
 dependencies for your program to run.
 
-Static linking is supported via an alternative `libc`, `musl`. You can compile
+Static linking is supported via an alternative `libc`, [`musl`](http://www.musl-libc.org). You can compile
 your own version of Rust with `musl` enabled and install it into a custom
 directory with the instructions below: