Skip to content

Commit 6a293d5

Browse files
authored
Update README.md
1 parent c2b11dd commit 6a293d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ hours(1)->equals(minutes(60));
6464

6565
There is a **Month** and a **Year** class (note the missing `s` at the end) to access precise informations about a specific year or a specific month in a specific year:
6666

67-
## Month:
67+
### Month:
6868
```php
6969
Month::Of('Feb', 2015)->inDays()->equalsAmount(28);
7070
Month::Of('Feb', 2015)->inWeeks()->equalsAmount(4);
@@ -73,7 +73,7 @@ Month::Of('Jun', 2016)->inDays()->equalsAmount(30);
7373
Month::Of('Jun', 2016)->inWeeks()->equalsAmount(4.28571);
7474
```
7575

76-
## Year:
76+
### Year:
7777
```php
7878
Year::Of(2016)->isLeapyear();
7979
Year::Of(2015)->inDays()->equalsAmount(365);
@@ -84,7 +84,7 @@ Year::Of(2016)->inWeeks()->equalsAmount(52.285714285714);
8484

8585
----
8686

87-
### Represent a TimeUnit as a DateUnit
87+
## Represent a TimeUnit as a DateUnit
8888

8989
```php
9090
$date = new DateUnit(days(1000));

0 commit comments

Comments
 (0)