Commit: 681fa6a9c20d12df65dd8b12e42c8e2b1fbf2f6a Parent: d836cdb0705db244a935f1cd1ad571ff7b9c55eb Author: Vi Grey Date: 2017-08-26 17:36 UTC Summary: Fix README.md syntax README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ad5d61f..6e46c8f 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,10 @@ datecalc is created by Vi Grey (https://vigrey.com) and is licen Go package to calculate the day of the week of any date -####Dependencies +#### Dependencies * Go -####Using the Package +#### Using the Package func Date(year int, month, date int8, calType string) (day string, err error) To calculate the day of the week for any date, use *datecalc.Date(y, m, d, t)* where y is the full year (a negative integer for BC years), m is the month number, d is the day number, and type is the calendar type. The calendar types you have to chose from are: @@ -22,7 +22,7 @@ English is the calendar system the English speaking western countries are using. Roman is the calendar system the Roman Empire used. This was a system where the calendar was under the Julian system until 1582, when it switched to the Gregorian Calendar, skipping October 5th and going straight to October 15th to offset for the differences in the calendar systems on how they incorporated leap yars. -####Example Uses +#### Example Uses ``` package main