diff options
| author | Christian Duerr <contact@christianduerr.com> | 2017-11-30 00:28:59 +0100 |
|---|---|---|
| committer | Christian Duerr <contact@christianduerr.com> | 2017-11-30 00:28:59 +0100 |
| commit | 91a41069115c70f95509fadae70e67c0effbed93 (patch) | |
| tree | 061cb95efaef802e49d4db127146322404fa7b6c /src/test/rustdoc | |
| parent | 0a2e9ade83ff253bb489c63a95b1f499c5e0916f (diff) | |
| download | rust-91a41069115c70f95509fadae70e67c0effbed93.tar.gz rust-91a41069115c70f95509fadae70e67c0effbed93.zip | |
Fix rustoc item summaries that are headers
Rustoc item summaries that are headers were not displayed at all because they started with whitespace. This PR fixes this and now removes the whitespace and then displays the block.
Diffstat (limited to 'src/test/rustdoc')
| -rw-r--r-- | src/test/rustdoc/issue-46377.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/rustdoc/issue-46377.rs b/src/test/rustdoc/issue-46377.rs new file mode 100644 index 00000000000..db8c7660df1 --- /dev/null +++ b/src/test/rustdoc/issue-46377.rs @@ -0,0 +1,13 @@ +// Copyright 2015 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// @has 'issue_46377/index.html' '//*[@class="docblock-short"]' 'Check out this struct!' +/// # Check out this struct! +pub struct SomeStruct; |
