[Diag] Fix idiom in comment: "on the lam", not "on the lamb".
authorJustin Lebar <jlebar@google.com>
Wed, 10 Aug 2016 01:09:07 +0000 (01:09 +0000)
committerJustin Lebar <jlebar@google.com>
Wed, 10 Aug 2016 01:09:07 +0000 (01:09 +0000)
llvm-svn: 278192

clang/lib/Basic/Diagnostic.cpp

index 0853ec6..1f4316a 100644 (file)
@@ -1010,7 +1010,7 @@ PartialDiagnostic::StorageAllocator::StorageAllocator() {
 PartialDiagnostic::StorageAllocator::~StorageAllocator() {
   // Don't assert if we are in a CrashRecovery context, as this invariant may
   // be invalidated during a crash.
-  assert((NumFreeListEntries == NumCached || 
-          llvm::CrashRecoveryContext::isRecoveringFromCrash()) && 
-         "A partial is on the lamb");
+  assert((NumFreeListEntries == NumCached ||
+          llvm::CrashRecoveryContext::isRecoveringFromCrash()) &&
+         "A partial is on the lam");
 }