diff options
author | Neil Conway <neilc@samurai.com> | 2008-06-09 06:55:34 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2008-06-09 06:55:34 +0000 |
commit | da80a4b97e96c27067e04dccfc998a79408e441b (patch) | |
tree | 14fd83d982bd8e3572117833fafad6e463434844 /src | |
parent | 7f15f8f2e7a868839fd6b702028aa9d098cf5d75 (diff) | |
download | postgresql-da80a4b97e96c27067e04dccfc998a79408e441b.tar.gz |
Fix typo in comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/storage/lmgr/proc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/storage/lmgr/proc.c b/src/backend/storage/lmgr/proc.c index 0ac70da1f0..b20cbe249f 100644 --- a/src/backend/storage/lmgr/proc.c +++ b/src/backend/storage/lmgr/proc.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/storage/lmgr/proc.c,v 1.199 2008/01/26 19:55:08 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/storage/lmgr/proc.c,v 1.200 2008/06/09 06:55:34 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -1171,9 +1171,9 @@ CheckDeadLock(void) /* * Check to see if we've been awoken by anyone in the interim. * - * If we have we can return and resume our transaction -- happy day. - * Before we are awoken the process releasing the lock grants it to us so - * we know that we don't have to wait anymore. + * If we can return and resume our transaction -- happy day. Before we + * are awoken the process releasing the lock grants it to us so we know + * that we don't have to wait anymore. * * We check by looking to see if we've been unlinked from the wait queue. * This is quicker than checking our semaphore's state, since no kernel |