summaryrefslogtreecommitdiff
path: root/onlineupdate/source/update/inc/mozilla/UniquePtr.h
diff options
context:
space:
mode:
Diffstat (limited to 'onlineupdate/source/update/inc/mozilla/UniquePtr.h')
-rw-r--r--onlineupdate/source/update/inc/mozilla/UniquePtr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/onlineupdate/source/update/inc/mozilla/UniquePtr.h b/onlineupdate/source/update/inc/mozilla/UniquePtr.h
index 28b5794e4469..6fad8d1cfb8a 100644
--- a/onlineupdate/source/update/inc/mozilla/UniquePtr.h
+++ b/onlineupdate/source/update/inc/mozilla/UniquePtr.h
@@ -102,7 +102,7 @@ namespace mozilla {
* and move-assigned, not only from itself but from "derived" UniquePtr<U, E>
* instantiations where U converts to T and E converts to D. If you want to use
* this, you're going to have to specify a deletion policy for both UniquePtr
- * instantations, and T pretty much has to have a virtual destructor. In other
+ * instantiations, and T pretty much has to have a virtual destructor. In other
* words, this doesn't work:
*
* struct Base { virtual ~Base() {} };