[ELF] - Fix mistype. NFC.
authorGeorge Rimar <grimar@accesssoftek.com>
Tue, 8 Nov 2016 15:26:21 +0000 (15:26 +0000)
committerGeorge Rimar <grimar@accesssoftek.com>
Tue, 8 Nov 2016 15:26:21 +0000 (15:26 +0000)
Thanks to Malcolm Parsons who pointed on that.

llvm-svn: 286239

lld/ELF/Memory.h

index 0b75e82..9479fd0 100644 (file)
@@ -47,7 +47,7 @@ template <class T> struct SpecificAlloc : public SpecificAllocBase {
   llvm::SpecificBumpPtrAllocator<T> Alloc;
 };
 
-// Use this arena if your object have a destructor.
+// Use this arena if your object has a destructor.
 // Your destructor will be invoked from freeArena().
 template <typename T, typename... U> inline T *make(U &&... Args) {
   static SpecificAlloc<T> Alloc;