Skip to content

Commit 9b44231

Browse files
committed
fix: Some syntax error fixing
1 parent eedd58e commit 9b44231

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/doc-cli-install-quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import TabItem from '@theme/TabItem';
1010

1111
## Synopsis
1212

13-
Printing Simple Table on your bash terminal. Its useful when you want to present some tables on console.
13+
Printing Simple Table on your bash terminal. It's useful when you want to present tables on the console.
1414

1515
## Installation
1616

docs/doc-emojis-special-chars.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
88

99
## Special chars
1010

11-
Special chars might have different length of chars in your console. For that if you want to declare yourself the length of the character then you should use charLength option.
11+
Special chars might have different character lengths in your console. If you want to declare the length of a character yourself, use the charLength option.
1212

1313
```javascript
1414
import { Table } from 'console-table-printer';

docs/doc-enable-disable-col.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
88

99
## Enable
1010

11-
Optional param. Pass the names of columns as list. Use it when your json data contains so many garbage that you want only few columns to be visible.
11+
Optional param. Pass the names of columns as a list. Use it when your JSON data contains extra fields and you want only a few columns to be visible.
1212

1313
```javascript
1414
import { Table } from 'console-table-printer';
@@ -44,7 +44,7 @@ p.printTable();
4444

4545
## Disable
4646

47-
This one was good incase you a short listed disabled columns.
47+
This one is good in case you have a short list of disabled columns.
4848

4949
```javascript
5050
import { Table } from 'console-table-printer';

docs/doc-limit-line-width.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
88

99
## maxLen
1010

11-
Limit the max Length of each column using this.
11+
Limit the max length of each column using this.
1212

13-
By default all lines are printed in single line. But in case you want to put max width of column lines will be splitted into multiples.
13+
By default, all lines are printed in a single line. But in case you want to put a max width on column lines, they will be split into multiple lines.
1414

1515
```javascript
1616
import { Table } from 'console-table-printer';

0 commit comments

Comments
 (0)