Skip to content

Commit 1668798

Browse files
Jungku Leetargos
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โ€Ž

Lines changed: 6 additions & 6 deletions
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)