diff options
| author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-05-20 19:44:46 +0300 |
|---|---|---|
| committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-05-20 19:45:43 +0300 |
| commit | fa60fb63e511e7bbcf57ce972338711593a5e7c9 (patch) | |
| tree | b6dc30e0a552d635e1e7bc8ea4d7e5d8b916ae91 /src/backend/access/transam | |
| parent | 4fc72cc7bb9d2105261b8ee45558af50d788cd19 (diff) | |
Fix more typos in comments.
Patch by CharSyam, plus a few more I spotted with grep.
Diffstat (limited to 'src/backend/access/transam')
| -rw-r--r-- | src/backend/access/transam/twophase.c | 2 | ||||
| -rw-r--r-- | src/backend/access/transam/xact.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/twophase.c b/src/backend/access/transam/twophase.c index d9a3fabb8f8..4743cacefe6 100644 --- a/src/backend/access/transam/twophase.c +++ b/src/backend/access/transam/twophase.c @@ -269,7 +269,7 @@ AtAbort_Twophase(void) * can be finished later, so just unlock it. * * If we abort during prepare, after having written the WAL record, we - * might not have transfered all locks and other state to the prepared + * might not have transferred all locks and other state to the prepared * transaction yet. Likewise, if we abort during commit or rollback, * after having written the WAL record, we might not have released * all the resources held by the transaction yet. In those cases, the diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index 62f00455e1b..23401057e2c 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -2317,7 +2317,7 @@ PrepareTransaction(void) /* * In normal commit-processing, this is all non-critical post-transaction * cleanup. When the transaction is prepared, however, it's important that - * the locks and other per-backend resources are transfered to the + * the locks and other per-backend resources are transferred to the * prepared transaction's PGPROC entry. Note that if an error is raised * here, it's too late to abort the transaction. XXX: This probably should * be in a critical section, to force a PANIC if any of this fails, but |
