summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2004-02-24 10:13:25 +0000
committerDmitry Stogov <dmitry@php.net>2004-02-24 10:13:25 +0000
commit9da18c12cf48f83066f7fa284549b624e5cf93f2 (patch)
treed4d9c312d6a384d948a6ae746d20db54c4ee035c
parentf15dcfacc1c5103b7d98876d3298eec35845a226 (diff)
downloadphp-git-9da18c12cf48f83066f7fa284549b624e5cf93f2.tar.gz
fix: anotaion -> anotation
-rw-r--r--ext/soap/php_schema.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/soap/php_schema.c b/ext/soap/php_schema.c
index f1956137e4..bf4837b306 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: <annotation> 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: <annotaion> support */
+ /* TODO: <annotation> 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: <annotaion> support */
+ /* TODO: <annotation> 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: <annotaion> support */
+ /* TODO: <annotation> 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: <annotaion> support */
+ /* TODO: <annotation> 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: <annotaion> support */
+ /* TODO: <annotation> 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: <annotaion> support */
+ /* TODO: <annotation> 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: <annotaion> support */
+ /* TODO: <annotation> support */
trav = trav->next;
}
while (trav != NULL) {