Skip to content

Commit 758da1d

Browse files
committed
Update README.md
1 parent 17c57eb commit 758da1d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,21 @@ const date = new Date();
3737
const phase = getLunarAge(date);
3838
```
3939

40-
To get the percentage through the lunar cycle (ex: 0.5602368519132597):
40+
To get the percentage through the lunar cycle (ex: 0.5602368519132597)
4141

4242
```js
4343
const date = new Date();
4444
const phase = getLunarAgePercent(date);
4545
```
4646

47-
Whether the moon is waxing (ex: false):
47+
Whether the moon is waxing (ex: false)
4848

4949
```js
5050
const date = new Date();
5151
const phase = isWaxing(date);
5252
```
5353

54-
Whether the moon is waning (ex: true):
54+
Whether the moon is waning (ex: true)
5555

5656
```js
5757
const date = new Date();

0 commit comments

Comments
 (0)