Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix a few typos #117

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions delorean/dates.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def timezone(self):

def truncate(self, s):
"""
Truncate the delorian object to the nearest s
Truncate the delorean object to the nearest s
(second, minute, hour, day, month, year)

This is a destructive method, modifies the internal datetime
Expand Down Expand Up @@ -426,7 +426,7 @@ def midnight(self):
@property
def start_of_day(self):
"""
Returns the start of the day for datetime assoicated
Returns the start of the day for datetime associated
with the Delorean object, modifying the Delorean object.

.. testsetup::
Expand All @@ -447,7 +447,7 @@ def start_of_day(self):
def end_of_day(self):
"""
Returns the end of the day for the datetime
assocaited with the Delorean object, modifying the Delorean object.
associated with the Delorean object, modifying the Delorean object.

.. testsetup::

Expand Down
2 changes: 1 addition & 1 deletion delorean/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def stops(freq, interval=1, count=None, wkst=None, bysetpos=None,
bysecond=None, timezone='UTC', start=None, stop=None):
"""
This will create a list of delorean objects the apply to
setting possed in.
setting posed in.
"""
# check to see if datetimees passed in are naive if so process them
# with given timezone.
Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This software can be installed in multiple ways. The ways that are recommended a

Obtaining the Source
^^^^^^^^^^^^^^^^^^^^
This is a library targeted specifcally to developers so you will most likely want to get your hands on the source. It can be obtained as follows.::
This is a library targeted specifically to developers so you will most likely want to get your hands on the source. It can be obtained as follows.::

$ git clone git://github.com/myusuf3/delorean.git

Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Usage
=====
`Delorean` aims to provide you with convient ways to get significant dates and times and easy ways to move dates from state to state.
`Delorean` aims to provide you with convenient ways to get significant dates and times and easy ways to move dates from state to state.

In order to get the most of the documentation we will define some terminology.

Expand Down