Skip to content

Commit

Permalink
fix(docs): set calls as static
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed Aug 29, 2023
1 parent 3164051 commit 522777f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/the-basics/helpers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2310,7 +2310,7 @@ import { Is } from '@athenna/common'
Is.kindOf('string', 'string') // true
```

#### `Is.Mac()`
#### `Is::Mac()`

Validate if the current OS is a MacOS:

Expand All @@ -2320,7 +2320,7 @@ import { Is } from '@athenna/common'
Is.Mac() // true
```

#### `Is.Linux()`
#### `Is::Linux()`

Validate if the current OS is a distribution of
Linux:
Expand All @@ -2331,7 +2331,7 @@ import { Is } from '@athenna/common'
Is.Linux() // true
```

#### `Is.Windows()`
#### `Is::Windows()`

Validate if the current OS is a Windows:

Expand Down

0 comments on commit 522777f

Please sign in to comment.