Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rex4539 authored Feb 27, 2018
1 parent f9dbd1e commit 3612eab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/support/pagelocker.h
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ class LockedPageManager : public LockedPageManagerBase<MemoryPageLocker>
static void CreateInstance()
{
// 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
// 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.
static LockedPageManager instance;
LockedPageManager::_instance = &instance;
Expand Down

0 comments on commit 3612eab

Please sign in to comment.