From 26ad842cd4001988b86f13bbacac0bb04be0ece2 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Mon, 22 Aug 2005 22:52:19 +0000 Subject: [PATCH] Some comment corrections. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1859 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/uio/paths.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sc2/src/sc2code/libs/uio/paths.c b/sc2/src/sc2code/libs/uio/paths.c index b26ad117e..095079b9c 100644 --- a/sc2/src/sc2code/libs/uio/paths.c +++ b/sc2/src/sc2code/libs/uio/paths.c @@ -61,10 +61,10 @@ getFirstPath0Component(const char *dir, *endComp = *startComp + strlen(*startComp); } -// gets the next component of path +// gets the next component of a path // '*start' should be set to the start of the last component // '*end' should be set to the end of the last component -// '*start' will be set to the start of the next componentt +// '*start' will be set to the start of the next component // '*end' will be set to the end of the next component // if *start >= dirEnd, then the end has been reached. void @@ -82,10 +82,10 @@ getNextPathComponent(const char *dirEnd, *endComp = dirEnd; } -// gets the next component of path +// gets the next component of a path // '*start' should be set to the start of the last component // '*end' should be set to the end of the last component -// '*start' will be set to the start of the next componentt +// '*start' will be set to the start of the next component // '*end' will be set to the end of the next component // if **start == '\0', then the end has been reached. void