Skip to content

Commit 1908b06

Browse files
authored
docs(borders): add missing closing code blocks (#1195)
1 parent 3f2f2cd commit 1908b06

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/symbols/border.rs

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ impl Default for Set {
2525
/// │xxxxx│
2626
/// │xxxxx│
2727
/// └─────┘
28+
/// ```
2829
pub const PLAIN: Set = Set {
2930
top_left: line::NORMAL.top_left,
3031
top_right: line::NORMAL.top_right,
@@ -43,6 +44,7 @@ pub const PLAIN: Set = Set {
4344
/// │xxxxx│
4445
/// │xxxxx│
4546
/// ╰─────╯
47+
/// ```
4648
pub const ROUNDED: Set = Set {
4749
top_left: line::ROUNDED.top_left,
4850
top_right: line::ROUNDED.top_right,
@@ -61,6 +63,7 @@ pub const ROUNDED: Set = Set {
6163
/// ║xxxxx║
6264
/// ║xxxxx║
6365
/// ╚═════╝
66+
/// ```
6467
pub const DOUBLE: Set = Set {
6568
top_left: line::DOUBLE.top_left,
6669
top_right: line::DOUBLE.top_right,
@@ -79,6 +82,7 @@ pub const DOUBLE: Set = Set {
7982
/// ┃xxxxx┃
8083
/// ┃xxxxx┃
8184
/// ┗━━━━━┛
85+
/// ```
8286
pub const THICK: Set = Set {
8387
top_left: line::THICK.top_left,
8488
top_right: line::THICK.top_right,
@@ -242,6 +246,7 @@ pub const PROPORTIONAL_TALL: Set = Set {
242246
/// █xx█
243247
/// █xx█
244248
/// ████
249+
/// ```
245250
pub const FULL: Set = Set {
246251
top_left: block::FULL,
247252
top_right: block::FULL,

0 commit comments

Comments
 (0)