Skip to content

Commit cf06939

Browse files
committed
DOC: Draw splits with dashed lines in box art
1 parent ebda894 commit cf06939

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/impl_views.rs

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,9 @@ where
160160
/// ```
161161
/// ```text
162162
/// ┌───┬───┬───┬───┐ 0 ↓ indices
163-
/// │ │ 0 │ 1 │ 2 │ 3 │ v1
164-
/// v └───┴───┴───┴───┘ 1
163+
/// │ 0 │ 1 │ 2 │ 3 │ v1
164+
/// │ └───┴───┴───┴───┘
165+
/// v ┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄ 1
165166
/// Axis(0)┌───┬───┬───┬───┐
166167
/// │ 4 │ 5 │ 6 │ 7 │
167168
/// ├───┼───┼───┼───┤ v2 2
@@ -182,13 +183,13 @@ where
182183
/// ```text
183184
/// u1 u2
184185
/// 0 1 2 3 4 indices →
185-
/// ┌───┬───┐ ┌───┬───┐
186-
/// │ 0 │ 1 │ │ 2 │ 3 │
187-
/// ├───┼───┤ ├───┼───┤
188-
/// │ 4 │ 5 │ │ 6 │ 7 │
189-
/// ├───┼───┤ ├───┼───┤
190-
/// │ 8 │ 9 │ │ 0 │ 1 │
191-
/// └───┴───┘ └───┴───┘
186+
/// ┌───┬───┐┌───┬───┐
187+
/// │ 0 │ 1 ││ 2 │ 3 │
188+
/// ├───┼───┤├───┼───┤
189+
/// │ 4 │ 5 ││ 6 │ 7 │
190+
/// ├───┼───┤├───┼───┤
191+
/// │ 8 │ 9 ││ 0 │ 1 │
192+
/// └───┴───┘└───┴───┘
192193
/// ─> Axis(1)
193194
/// ```
194195
pub fn split_at(self, axis: Axis, index: Ix) -> (Self, Self) {

0 commit comments

Comments
 (0)