Fix tab issue in readme

This commit is contained in:
Jesse Gumm 2015-11-06 17:28:27 -06:00
parent c685f4dc12
commit faeadb732a

View file

@ -625,17 +625,17 @@ The current implementation of qdate's date arithmetic returns Unixtimes.
There are 8 main functions for date arithmetic: There are 8 main functions for date arithmetic:
+ `add_seconds(Seconds, Date)` + `add_seconds(Seconds, Date)`
+ `add_minutes(Minutes, Date)` + `add_minutes(Minutes, Date)`
+ `add_hours(Hours, Date)` + `add_hours(Hours, Date)`
+ `add_days(Days, Date)` + `add_days(Days, Date)`
+ `add_weeks(Weeks, Date)` + `add_weeks(Weeks, Date)`
+ `add_months(Months, Date)` + `add_months(Months, Date)`
+ `add_years(Years, Date)` + `add_years(Years, Date)`
+ `add_date(DateToAdd, Date)` - `DateToAdd` is a shortcut way of adding + `add_date(DateToAdd, Date)` - `DateToAdd` is a shortcut way of adding
numerous options. For example. `qdate:add_date({{1, 2, -3}, {-500, 20, 0}})` numerous options. For example. `qdate:add_date({{1, 2, -3}, {-500, 20, 0}})`
will add 1 year, add 2 months, subtract 3 days, subtract 500 hours, add 20 will add 1 year, add 2 months, subtract 3 days, subtract 500 hours, add 20
minutes, and not make any changes to seconds. minutes, and not make any changes to seconds.
For the date arithmetic functions, `Date`, like all `qdate` functions, can be any For the date arithmetic functions, `Date`, like all `qdate` functions, can be any
format. format.