From 9da18c12cf48f83066f7fa284549b624e5cf93f2 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 24 Feb 2004 10:13:25 +0000 Subject: [PATCH] fix: anotaion -> anotation --- ext/soap/php_schema.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ext/soap/php_schema.c b/ext/soap/php_schema.c index f1956137e4e..bf4837b3063 100644 --- a/ext/soap/php_schema.c +++ b/ext/soap/php_schema.c @@ -649,7 +649,7 @@ static int schema_restriction_simpleContent(sdlPtr sdl, xmlAttrPtr tsn, xmlNodeP } trav = restType->children; - if (trav != NULL && node_is_equal(trav, "annotaion")) { + if (trav != NULL && node_is_equal(trav, "annotation")) { /* TODO: support */ trav = trav->next; } @@ -748,7 +748,7 @@ static int schema_restriction_complexContent(sdlPtr sdl, xmlAttrPtr tsn, xmlNode trav = restType->children; if (trav != NULL && node_is_equal(trav,"annotation")) { - /* TODO: support */ + /* TODO: support */ trav = trav->next; } if (trav != NULL) { @@ -873,7 +873,7 @@ static int schema_extension_simpleContent(sdlPtr sdl, xmlAttrPtr tsn, xmlNodePtr trav = extType->children; if (trav != NULL && node_is_equal(trav,"annotation")) { - /* TODO: support */ + /* TODO: support */ trav = trav->next; } while (trav != NULL) { @@ -928,7 +928,7 @@ static int schema_extension_complexContent(sdlPtr sdl, xmlAttrPtr tsn, xmlNodePt trav = extType->children; if (trav != NULL && node_is_equal(trav,"annotation")) { - /* TODO: support */ + /* TODO: support */ trav = trav->next; } if (trav != NULL) { @@ -1010,7 +1010,7 @@ static int schema_all(sdlPtr sdl, xmlAttrPtr tsn, xmlNodePtr all, sdlTypePtr cur trav = all->children; if (trav != NULL && node_is_equal(trav,"annotation")) { - /* TODO: support */ + /* TODO: support */ trav = trav->next; } while (trav != NULL) { @@ -1132,7 +1132,7 @@ static int schema_group(sdlPtr sdl, xmlAttrPtr tsn, xmlNodePtr groupType, sdlTyp trav = groupType->children; if (trav != NULL && node_is_equal(trav,"annotation")) { - /* TODO: support */ + /* TODO: support */ trav = trav->next; } if (trav != NULL) { @@ -1210,7 +1210,7 @@ static int schema_choice(sdlPtr sdl, xmlAttrPtr tsn, xmlNodePtr choiceType, sdlT trav = choiceType->children; if (trav != NULL && node_is_equal(trav,"annotation")) { - /* TODO: support */ + /* TODO: support */ trav = trav->next; } while (trav != NULL) { @@ -1276,7 +1276,7 @@ static int schema_sequence(sdlPtr sdl, xmlAttrPtr tsn, xmlNodePtr seqType, sdlTy trav = seqType->children; if (trav != NULL && node_is_equal(trav,"annotation")) { - /* TODO: support */ + /* TODO: support */ trav = trav->next; } while (trav != NULL) {