From c88344edb0e3b6bc8118dcae47bdef413e05ba87 Mon Sep 17 00:00:00 2001 From: "jwalden%mit.edu" Date: Sat, 17 Nov 2007 19:47:06 +0000 Subject: [PATCH] Kick one of the unit test tinderboxen into another build. git-svn-id: svn://10.0.0.236/trunk@239588 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/netwerk/protocol/http/src/nsHttpChannel.cpp | 2 +- mozilla/xpcom/ds/nsStringEnumerator.h | 2 +- mozilla/xpcom/glue/nsIWeakReferenceUtils.h | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mozilla/netwerk/protocol/http/src/nsHttpChannel.cpp b/mozilla/netwerk/protocol/http/src/nsHttpChannel.cpp index d57b996afb3..8074e85d128 100644 --- a/mozilla/netwerk/protocol/http/src/nsHttpChannel.cpp +++ b/mozilla/netwerk/protocol/http/src/nsHttpChannel.cpp @@ -4486,7 +4486,7 @@ nsHttpChannel::OnDataAvailable(nsIRequest *request, nsISupports *ctxt, // // we have to manually keep the logical offset of the stream up-to-date. - // we cannot depend soley on the offset provided, since we may have + // we cannot depend solely on the offset provided, since we may have // already streamed some data from another source (see, for example, // OnDoneReadingPartialCacheEntry). // diff --git a/mozilla/xpcom/ds/nsStringEnumerator.h b/mozilla/xpcom/ds/nsStringEnumerator.h index d0080005721..5ee83405590 100644 --- a/mozilla/xpcom/ds/nsStringEnumerator.h +++ b/mozilla/xpcom/ds/nsStringEnumerator.h @@ -84,7 +84,7 @@ NS_NewStringEnumerator(nsIStringEnumerator** aResult, // Adopting string enumerators assume ownership of the array and will // call |operator delete| on the array when the enumerator is destroyed -// this is useful when the provider creates an array soley for the +// this is useful when the provider creates an array solely for the // purpose of creating the enumerator. // For example: // diff --git a/mozilla/xpcom/glue/nsIWeakReferenceUtils.h b/mozilla/xpcom/glue/nsIWeakReferenceUtils.h index 4b85c5b5279..0a03cb32357 100644 --- a/mozilla/xpcom/glue/nsIWeakReferenceUtils.h +++ b/mozilla/xpcom/glue/nsIWeakReferenceUtils.h @@ -114,7 +114,7 @@ inline void do_GetWeakReference( nsIWeakReference* aRawPtr, nsresult* error = 0 ) { - // This signature exists soley to _stop_ you from doing a bad thing. + // This signature exists solely to _stop_ you from doing a bad thing. // Saying |do_GetWeakReference()| on a weak reference itself, // is very likely to be a programmer error. } @@ -124,7 +124,7 @@ inline void do_GetWeakReference( already_AddRefed& ) { - // This signature exists soley to _stop_ you from doing the bad thing. + // This signature exists solely to _stop_ you from doing the bad thing. // Saying |do_GetWeakReference()| on a pointer that is not otherwise owned by // someone else is an automatic leak. See . } @@ -134,7 +134,7 @@ inline void do_GetWeakReference( already_AddRefed&, nsresult* ) { - // This signature exists soley to _stop_ you from doing the bad thing. + // This signature exists solely to _stop_ you from doing the bad thing. // Saying |do_GetWeakReference()| on a pointer that is not otherwise owned by // someone else is an automatic leak. See . }