mirror of https://github.com/zcash/zcash.git
Fix typos
This commit is contained in:
parent
f9dbd1e2d5
commit
3612eaba2d
|
@ -145,9 +145,9 @@ private:
|
||||||
static void CreateInstance()
|
static void CreateInstance()
|
||||||
{
|
{
|
||||||
// Using a local static instance guarantees that the object is initialized
|
// Using a local static instance guarantees that the object is initialized
|
||||||
// when it's first needed and also deinitialized after all objects that use
|
// when it's first needed and also uninitialized after all objects that use
|
||||||
// it are done with it. I can think of one unlikely scenario where we may
|
// it are done with it. I can think of one unlikely scenario where we may
|
||||||
// have a static deinitialization order/problem, but the check in
|
// have a static uninitialization order/problem, but the check in
|
||||||
// LockedPageManagerBase's destructor helps us detect if that ever happens.
|
// LockedPageManagerBase's destructor helps us detect if that ever happens.
|
||||||
static LockedPageManager instance;
|
static LockedPageManager instance;
|
||||||
LockedPageManager::_instance = &instance;
|
LockedPageManager::_instance = &instance;
|
||||||
|
|
Loading…
Reference in New Issue