From 824ab0ec43a3c9306e75e87537f8e2b3bcc3254e Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Mon, 19 Nov 2007 07:34:25 -0800 Subject: updated docs --- doc/classes/Git/Log.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/classes/Git/Log.html') diff --git a/doc/classes/Git/Log.html b/doc/classes/Git/Log.html index 08fff11..5d97ff5 100644 --- a/doc/classes/Git/Log.html +++ b/doc/classes/Git/Log.html @@ -175,7 +175,7 @@ object that holds the last X commits on given branch # File lib/git/log.rb, line 42 def between(sha1, sha2 = nil) dirty_log - @between = [@base.lib.revparse(sha1), @base.lib.revparse(sha2)] + @between = [sha1, sha2] return self end @@ -351,7 +351,7 @@ forces git log to run
 # File lib/git/log.rb, line 48
     def to_s
-      self.map { |c| c.sha }.join("\n")
+      self.map { |c| c.to_s }.join("\n")
     end
 
-- cgit