Skip to content

Commit

Permalink
docs(borders): add missing closing code blocks (#1195)
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jun 24, 2024
1 parent 3f2f2cd commit 1908b06
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/symbols/border.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 1908b06

Please sign in to comment.