From bf16db1cf25d0cc9627935953357e969ebfb8f8e Mon Sep 17 00:00:00 2001 From: Justin Lebar Date: Wed, 10 Aug 2016 01:09:07 +0000 Subject: [PATCH] [Diag] Fix idiom in comment: "on the lam", not "on the lamb". llvm-svn: 278192 --- clang/lib/Basic/Diagnostic.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clang/lib/Basic/Diagnostic.cpp b/clang/lib/Basic/Diagnostic.cpp index 0853ec6..1f4316a 100644 --- a/clang/lib/Basic/Diagnostic.cpp +++ b/clang/lib/Basic/Diagnostic.cpp @@ -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"); } -- 2.7.4