about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-06-30 15:37:44 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-06-30 15:37:44 -0400
commitbac361558e9712b8b57b2633df833b0d99ea0ecc (patch)
treec6832b66c08a4d2e96bc64e4d64be675f441c090
parent96dd82ff9c30430bab47be59d753f7baaf25cf98 (diff)
parent35abf86a1b6ac40d6a8478b9a7bc9da1ebf7b96f (diff)
downloadrust-bac361558e9712b8b57b2633df833b0d99ea0ecc.tar.gz
rust-bac361558e9712b8b57b2633df833b0d99ea0ecc.zip
Rollup merge of #26580 - adamheins:master, r=steveklabnik
I found a sentence that felt a bit awkward to read in its current form, so I added a comma to break it up.
-rw-r--r--src/doc/trpl/link-args.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/link-args.md b/src/doc/trpl/link-args.md
index ee5159afb8e..cdaef6cd9b5 100644
--- a/src/doc/trpl/link-args.md
+++ b/src/doc/trpl/link-args.md
@@ -17,7 +17,7 @@ Note that this feature is currently hidden behind the `feature(link_args)` gate
 because this is not a sanctioned way of performing linking. Right now rustc
 shells out to the system linker, 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
+LLVM directly to link native libraries, in which case `link_args` will have no
 meaning.
 
 It is highly recommended to *not* use this attribute, and rather use the more