diff options
author | Matthias Kestenholz <matthias@spinlock.ch> | 2006-05-03 12:51:40 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-03 14:08:41 -0700 |
commit | de5f2bf3612a43af074a98fd1fcdef6a403daf3f (patch) | |
tree | 2560ea707a4e85cd140088a97721ba08178141d1 /revision.c | |
parent | e923effb43fa952f9cb72ffe4c3625fce7655bff (diff) | |
download | git-de5f2bf3612a43af074a98fd1fcdef6a403daf3f.tar.gz git-de5f2bf3612a43af074a98fd1fcdef6a403daf3f.tar.xz |
fix various typos in documentation
Signed-off-by: Matthias Kestenholz <matthias@spinlock.ch>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'revision.c')
-rw-r--r-- | revision.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/revision.c b/revision.c index 03dd23893..5f2f0be38 100644 --- a/revision.c +++ b/revision.c @@ -537,7 +537,7 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch revs->max_count = atoi(arg + 12); continue; } - /* accept -<digit>, like traditilnal "head" */ + /* accept -<digit>, like traditional "head" */ if ((*arg == '-') && isdigit(arg[1])) { revs->max_count = atoi(arg + 1); continue; |