From 7c770c2c8c6570d5139d16e348217774faee80d1 Mon Sep 17 00:00:00 2001 From: David Symonds Date: Sun, 8 Jun 2008 00:22:06 +1000 Subject: [PATCH] gitstats: Fix some spelling mistakes. --- src/git_stats/author.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/git_stats/author.py b/src/git_stats/author.py index b338424..d840494 100755 --- a/src/git_stats/author.py +++ b/src/git_stats/author.py @@ -25,7 +25,7 @@ def activityInArea(log, filterid): Params: log: The log formatted as described above. - filterid: The id adress to filter on. + filterid: The id address to filter on. Returns: A dictionary containing activity per path is returned. @@ -49,9 +49,9 @@ def activityInArea(log, filterid): size = len(splitline) length = len(line.lstrip()) - # There is something on this line, but it contains no seperator + # There is something on this line, but it contains no separator if size == 1 and length > 0: - # Get the id adress minus the newline + # Get the id address minus the newline activity.id.append(line[:-1]) elif size == 3: try: @@ -101,7 +101,7 @@ def activity(id): """Shows the activity for the specified developer in the current repo. Params: - id: The id of the developper, currently only e-mail adress is accepted. + id: The id of the developer, currently only e-mail address is accepted. """ git = Git(".") -- 2.11.4.GIT