Skip to content

Commit 1668798

Browse files
Jungku Leetargos
Jungku Lee
authored andcommitted
doc: update to align console.table row to the left
PR-URL: #50553 Refs: #50135 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
1 parent 78b3432 commit 1668798

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

β€Ždoc/api/console.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -420,18 +420,18 @@ console.table(undefined);
420420

421421
console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }]);
422422
// β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”
423-
// β”‚ (index) β”‚ a β”‚ b β”‚
423+
// β”‚ (index) β”‚ a β”‚ b β”‚
424424
// β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€
425-
// β”‚ 0 β”‚ 1 β”‚ 'Y' β”‚
426-
// β”‚ 1 β”‚ 'Z' β”‚ 2 β”‚
425+
// β”‚ 0 β”‚ 1 β”‚ 'Y' β”‚
426+
// β”‚ 1 β”‚ 'Z' β”‚ 2 β”‚
427427
// β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”˜
428428

429429
console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }], ['a']);
430430
// β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”
431-
// β”‚ (index) β”‚ a β”‚
431+
// β”‚ (index) β”‚ a β”‚
432432
// β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€
433-
// β”‚ 0 β”‚ 1 β”‚
434-
// β”‚ 1 β”‚ 'Z' β”‚
433+
// β”‚ 0 β”‚ 1 β”‚
434+
// β”‚ 1 β”‚ 'Z' β”‚
435435
// β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”˜
436436
```
437437

0 commit comments

Comments
Β (0)