diff options
| author | varkor <github@varkor.com> | 2017-12-18 19:52:45 +0000 |
|---|---|---|
| committer | varkor <github@varkor.com> | 2017-12-18 19:52:45 +0000 |
| commit | c0ff8144c49bdcad19eaa9b9847a7ea9e008cfee (patch) | |
| tree | 7299191dc11e0070b015365c352b16466ded255c | |
| parent | 7104e8f7b4da1cfdbd82fa7c4f81ed31be22f95e (diff) | |
| download | rust-c0ff8144c49bdcad19eaa9b9847a7ea9e008cfee.tar.gz rust-c0ff8144c49bdcad19eaa9b9847a7ea9e008cfee.zip | |
Fix tidy issue
| -rw-r--r-- | src/librustdoc/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 1b0ff3a71d7..7ebacdec1f0 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -254,7 +254,8 @@ pub fn opts() -> Vec<RustcOptGroup> { o.optopt("", "linker", "linker used for building executable test code", "PATH") }), unstable("sort-modules-by-appearance", |o| { - o.optflag("", "sort-modules-by-appearance", "sort modules by where they appear in the program, rather than alphabetically") + o.optflag("", "sort-modules-by-appearance", "sort modules by where they appear in the \ + program, rather than alphabetically") }), ] } |
