Fix some misspelled comments. Bug 106386, patch by Alex Vincent

<ajvincent@juno.com>, r+sr=bzbarsky
This commit is contained in:
bzbarsky%mit.edu 2004-04-13 01:27:25 +00:00
parent ff71873e75
commit 0960880868
2 changed files with 5 additions and 5 deletions

View File

@ -1441,7 +1441,7 @@ nsGenericElement::GetAttributeNS(const nsAString& aNamespaceURI,
nsContentUtils::GetNSManagerWeakRef()->GetNameSpaceID(aNamespaceURI, &nsid);
if (nsid == kNameSpaceID_Unknown) {
// Unkonwn namespace means no attr...
// Unknown namespace means no attr...
aReturn.Truncate();
@ -1480,7 +1480,7 @@ nsGenericElement::RemoveAttributeNS(const nsAString& aNamespaceURI,
nsContentUtils::GetNSManagerWeakRef()->GetNameSpaceID(aNamespaceURI, &nsid);
if (nsid == kNameSpaceID_Unknown) {
// Unkonwn namespace means no attr...
// Unknown namespace means no attr...
return NS_OK;
}
@ -1593,7 +1593,7 @@ nsGenericElement::HasAttributeNS(const nsAString& aNamespaceURI,
nsContentUtils::GetNSManagerWeakRef()->GetNameSpaceID(aNamespaceURI, &nsid);
if (nsid == kNameSpaceID_Unknown) {
// Unkonwn namespace means no attr...
// Unknown namespace means no attr...
*aReturn = PR_FALSE;

View File

@ -1151,7 +1151,7 @@ nsXULElement::GetAttributeNS(const nsAString& aNamespaceURI,
&nsid);
if (nsid == kNameSpaceID_Unknown) {
// Unkonwn namespace means no attr...
// Unknown namespace means no attr...
aReturn.Truncate();
return NS_OK;
@ -1296,7 +1296,7 @@ nsXULElement::HasAttributeNS(const nsAString& aNamespaceURI,
nsContentUtils::GetNSManagerWeakRef()->GetNameSpaceID(aNamespaceURI, &nsid);
if (nsid == kNameSpaceID_Unknown) {
// Unkonwn namespace means no attr...
// Unknown namespace means no attr...
*aReturn = PR_FALSE;
return NS_OK;
}