diff options
| author | Jeff Garzik <[email protected]> | 2012-06-29 06:15:33 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-06-29 06:15:33 -0700 |
| commit | a590aae01785e7bf07cd212c3f8813a53d6b85e3 (patch) | |
| tree | 7ed7831315250c54c0f7738166ace95b5e29f151 /src/sync.cpp | |
| parent | Merge branch 'patch-5' of https://github.com/xanatos/bitcoin (diff) | |
| parent | Fix a few typos (diff) | |
| download | discoin-a590aae01785e7bf07cd212c3f8813a53d6b85e3.tar.xz discoin-a590aae01785e7bf07cd212c3f8813a53d6b85e3.zip | |
Merge pull request #1532 from fanquake/master
Fix a couple typos
Diffstat (limited to 'src/sync.cpp')
| -rw-r--r-- | src/sync.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sync.cpp b/src/sync.cpp index dbd9ebdae..54ad7de4e 100644 --- a/src/sync.cpp +++ b/src/sync.cpp @@ -24,7 +24,7 @@ void PrintLockContention(const char* pszName, const char* pszFile, int nLine) // --> may result in deadlock between the two threads, depending on when they run. // Solution implemented here: // Keep track of pairs of locks: (A before B), (A before C), etc. -// Complain if any thread trys to lock in a different order. +// Complain if any thread tries to lock in a different order. // struct CLockLocation |