blob: 3ba87aab8c543ced7c71818afdcf7369eeecfc9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// rustfmt-wrap_comments: false
/// Table that is > 80 symbols:
///
/// | table | xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx |
/// |-------|-----------------------------------------------------------------------------|
/// | val | x |
pub struct Item;
/// Table value that is > 80 symbols:
///
/// | table | heading
/// |----------|-----------------------------------------------------------------------------
/// | long val | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
pub struct Item2;
|