diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-03-10 22:28:22 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-03-10 22:28:22 +0000 |
commit | e4704001ea4c3d63b53e8783859ff598ef2f69e5 (patch) | |
tree | 56d282d342ead04fc43af4efc5a2eccffa3e27ed /src/backend/access/transam | |
parent | 081fa240a119b67e28227439a3bf700340442787 (diff) |
This patch fixes a bunch of spelling mistakes in comments throughout the
PostgreSQL source code.
Neil Conway
Diffstat (limited to 'src/backend/access/transam')
-rw-r--r-- | src/backend/access/transam/xact.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index 7150569a228..0506e4801a3 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.141 2003/01/10 22:03:27 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.142 2003/03/10 22:28:18 tgl Exp $ * * NOTES * Transaction aborts can now occur two ways: @@ -91,7 +91,7 @@ * CommitTransactionBlock * AbortTransactionBlock * - * These are invoked only in responce to a user "BEGIN WORK", "COMMIT", + * These are invoked only in response to a user "BEGIN WORK", "COMMIT", * or "ROLLBACK" command. The tricky part about these functions * is that they are called within the postgres main loop, in between * the StartTransactionCommand() and CommitTransactionCommand(). @@ -236,7 +236,7 @@ static void *_RollbackData = NULL; * SetTransactionFlushEnabled() * * These are used to test and set the "TransactionFlushState" - * varable. If this variable is true (the default), then + * variable. If this variable is true (the default), then * the system will flush all dirty buffers to disk at the end * of each transaction. If false then we are assuming the * buffer pool resides in stable main memory, in which case we |