From: Reid Kleckner Date: Thu, 4 Apr 2019 00:13:16 +0000 (+0000) Subject: Fix minor innaccuracy in previous comment on ManagedStaticBase X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c89c2803c3199415f050a2e37b02a1a518df5984;p=llvm 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 --- 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.