diff options
author | Heikki Linnakangas | 2017-02-06 09:33:58 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2017-02-06 09:34:32 +0000 |
commit | 2a931efb76facac47b499afb64b05ab33ededc10 (patch) | |
tree | f386a59e3e37ffb4958d26ed13181a1d6f48d954 /contrib/spi/refint.c | |
parent | c5c755862348ec52007ae18e489be07395cbb023 (diff) |
Fix typos in comments.
Backpatch to all supported versions, where applicable, to make backpatching
of future fixes go more smoothly.
Josh Soref
Discussion: https://www.postgresql.org/message-id/CACZqfqCf+5qRztLPgmmosr-B0Ye4srWzzw_mo4c_8_B_mtjmJQ@mail.gmail.com
Diffstat (limited to 'contrib/spi/refint.c')
-rw-r--r-- | contrib/spi/refint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/spi/refint.c b/contrib/spi/refint.c index 8dc565a1907..a2ffa7da061 100644 --- a/contrib/spi/refint.c +++ b/contrib/spi/refint.c @@ -93,7 +93,7 @@ check_primary_key(PG_FUNCTION_ARGS) /* internal error */ elog(ERROR, "check_primary_key: cannot process DELETE events"); - /* If UPDATion the must check new Tuple, not old one */ + /* If UPDATE, then must check new Tuple, not old one */ else tuple = trigdata->tg_newtuple; |