From 1908b06b4a497ff1cfb2c8d8c165d2a241ee1864 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Mon, 24 Jun 2024 11:27:14 +0300 Subject: [PATCH] docs(borders): add missing closing code blocks (#1195) --- src/symbols/border.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/symbols/border.rs b/src/symbols/border.rs index f7a40c6b..6b537a10 100644 --- a/src/symbols/border.rs +++ b/src/symbols/border.rs @@ -25,6 +25,7 @@ impl Default for Set { /// │xxxxx│ /// │xxxxx│ /// └─────┘ +/// ``` pub const PLAIN: Set = Set { top_left: line::NORMAL.top_left, top_right: line::NORMAL.top_right, @@ -43,6 +44,7 @@ pub const PLAIN: Set = Set { /// │xxxxx│ /// │xxxxx│ /// ╰─────╯ +/// ``` pub const ROUNDED: Set = Set { top_left: line::ROUNDED.top_left, top_right: line::ROUNDED.top_right, @@ -61,6 +63,7 @@ pub const ROUNDED: Set = Set { /// ║xxxxx║ /// ║xxxxx║ /// ╚═════╝ +/// ``` pub const DOUBLE: Set = Set { top_left: line::DOUBLE.top_left, top_right: line::DOUBLE.top_right, @@ -79,6 +82,7 @@ pub const DOUBLE: Set = Set { /// ┃xxxxx┃ /// ┃xxxxx┃ /// ┗━━━━━┛ +/// ``` pub const THICK: Set = Set { top_left: line::THICK.top_left, top_right: line::THICK.top_right, @@ -242,6 +246,7 @@ pub const PROPORTIONAL_TALL: Set = Set { /// █xx█ /// █xx█ /// ████ +/// ``` pub const FULL: Set = Set { top_left: block::FULL, top_right: block::FULL,