From 7bfca5efce8988e6070e7284bd409d1a731a3fbc Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Sat, 20 Mar 2010 11:45:58 -0400 Subject: Many small doc changes pulled in from the 0.1.7RC branch. --- lib/git/repo.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/git/repo.py') diff --git a/lib/git/repo.py b/lib/git/repo.py index 3490499c..cfc0913d 100644 --- a/lib/git/repo.py +++ b/lib/git/repo.py @@ -161,11 +161,11 @@ class Repo(object): is the branch/commit name (default 'master') ``path`` - is an optinal path to limit the returned commits to. + is an optional path to limit the returned commits to. ``since`` - is a string represeting a date/time + is a string representing a date/time Returns ``git.Commit[]`` @@ -494,7 +494,7 @@ class Repo(object): """ if self.bare: # Bare repositories with no associated working directory are - # always consired to be clean. + # always considered to be clean. return False return len(self.git.diff('HEAD', '--').strip()) > 0 -- cgit v1.2.1