Fixing Events documentation for consistency.

This commit is contained in:
Adam Coddington 2013-10-11 18:48:12 -07:00
parent 91179a00a9
commit 6cdcbc2728

View file

@ -98,15 +98,15 @@ The calendar webservice currently only supports fetching events.
Returns this month's events: Returns this month's events:
``` ```
api.calendar.events() >>> api.calendar.events()
``` ```
Or, between a specific date range: Or, between a specific date range:
``` ```
from_dt = datetime(2012, 1, 1) >>> from_dt = datetime(2012, 1, 1)
to_dt = datetime(2012, 1, 31) >>> to_dt = datetime(2012, 1, 31)
api.calendar.events(from_dt, to_dt) >>> api.calendar.events(from_dt, to_dt)
``` ```
### File Storage (Ubiquity) ### File Storage (Ubiquity)