trunk/get.c: fix typos in comments.

git-svn-id: svn://svn.code.sf.net/p/ctags/code/trunk@559 c5d04d22-be80-434c-894e-aa346cc9e8e8
This commit is contained in:
elliotth 2007-06-17 03:30:09 +00:00
parent be76b26910
commit 2ba6f8be2a
1 changed files with 2 additions and 2 deletions

4
get.c
View File

@ -66,7 +66,7 @@ typedef struct sCppState {
boolean hasAtLiteralStrings; /* supports @"c:\" strings */
struct sDirective {
enum eState state; /* current directive being processed */
boolean accept; /* is a directive syntatically permitted? */
boolean accept; /* is a directive syntactically permitted? */
vString * name; /* macro name */
unsigned int nestLevel; /* level 0 is not used */
conditionalInfo ifdef [MaxCppNestingLevel];
@ -435,7 +435,7 @@ static Comment isComment (void)
}
/* Skips over a C style comment. According to ANSI specification a comment
* is treated as white space, so we perform this subsitution.
* is treated as white space, so we perform this substitution.
*/
int skipOverCComment (void)
{