Bug 564091: Fix spelling of nonexistent across the tree. r=timeless

This commit is contained in:
Michael Kohler
2010-05-23 12:26:15 -07:00
parent 77ae1383af
commit e4abd093dc
56 changed files with 89 additions and 89 deletions

View File

@@ -1764,7 +1764,7 @@ HTMLContentSink::BeginContext(PRInt32 aPosition)
}
if (!mCurrentContext) {
NS_ERROR("Non-existing context");
NS_ERROR("Nonexistent context");
return NS_ERROR_FAILURE;
}
@@ -1804,7 +1804,7 @@ HTMLContentSink::BeginContext(PRInt32 aPosition)
NS_IMETHODIMP
HTMLContentSink::EndContext(PRInt32 aPosition)
{
NS_PRECONDITION(mCurrentContext && aPosition > -1, "non-existing context");
NS_PRECONDITION(mCurrentContext && aPosition > -1, "nonexistent context");
PRUint32 n = mContextStack.Length() - 1;
SinkContext* sc = mContextStack.ElementAt(n);

View File

@@ -2154,7 +2154,7 @@ nsHTMLDocument::Close()
// document.open() and document.close() have completed, then this
// method should cause the firing of an onload event.
NS_ASSERTION(mWyciwygChannel, "nsHTMLDocument::Close(): Trying to remove "
"non-existent wyciwyg channel!");
"nonexistent wyciwyg channel!");
RemoveWyciwygChannel();
NS_ASSERTION(!mWyciwygChannel, "nsHTMLDocument::Close(): "
"nsIWyciwygChannel could not be removed!");