Kick one of the unit test tinderboxen into another build.

This commit is contained in:
jwalden@mit.edu 2007-11-17 11:47:05 -08:00
Родитель 53f32f6e20
Коммит a182842be2
3 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -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).
//

Просмотреть файл

@ -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:
//

Просмотреть файл

@ -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<T>& )
{
// 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 <http://bugzilla.mozilla.org/show_bug.cgi?id=8221>.
}
@ -134,7 +134,7 @@ inline
void
do_GetWeakReference( already_AddRefed<T>&, 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 <http://bugzilla.mozilla.org/show_bug.cgi?id=8221>.
}