From c89c2803c3199415f050a2e37b02a1a518df5984 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Thu, 4 Apr 2019 00:13:16 +0000 Subject: [PATCH] Fix minor innaccuracy in previous comment on ManagedStaticBase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@357656 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/ManagedStatic.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Support/ManagedStatic.h b/include/llvm/Support/ManagedStatic.h index ebf9bba5c22..0c02e136744 100644 --- a/include/llvm/Support/ManagedStatic.h +++ b/include/llvm/Support/ManagedStatic.h @@ -45,8 +45,8 @@ protected: public: /// ManagedStaticBase must be constexpr constructed so that they can be - /// accessed and constructed lazily during dynamic initilization of other - /// global variables, such as cl::opt command line flags. + /// accessed during dynamic initilization of other global variables, such as + /// cl::opt command line flags. constexpr ManagedStaticBase() = default; /// isConstructed - Return true if this object has not been created yet. -- 2.50.1