Skip to content

Commit

Permalink
spell check
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneswilm committed Apr 10, 2024
1 parent c2debea commit 5ecc04c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/documentation/columns-API.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,17 @@ columns.hide(3);

// Check visiblilty
columns.visible(3); // returns false
```

or;
or

```javascript
columns.visible([0, 1, 2, 3]); // returns [true, true, true, false]
```

or;
or

```javascript
columns.visible(); // returns [true, true, true, false, true]
```

Expand Down

0 comments on commit 5ecc04c

Please sign in to comment.