1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-19 15:05:36 +02:00

Fixed typos.

This commit is contained in:
Sergey Prigogin 2009-12-21 06:57:15 +00:00
parent 6fa46c7bb1
commit fb9dff069c
2 changed files with 3 additions and 3 deletions

View file

@ -48,7 +48,7 @@ void bar06(){
foo06(); // ref06
}
/* ---------- Test 7 ----------
* static function foo07 defintined in second.c
* static function foo07 defined in second.c
*/
void foo07(); // decl07
void bar07(){
@ -56,7 +56,7 @@ void bar07(){
}
/* ---------- Test 8 ----------
* static function foo08 defintined in second.c
* static function foo08 defined in second.c
*/
static void bar08(){
foo08(); // ref08

View file

@ -10,7 +10,7 @@ static void foo07() { // def07
}
/* ---------- Test 8 ----------
* static function foo08 defintined in second.c
* static function foo08 defined in second.c
*/
static void foo08() { // defS08
}