diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-06-03 13:44:03 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-06-03 13:44:03 +0900 |
commit | 1fb6f62a84041b668fd9e85a2f33bb3a0fd28fdc (patch) | |
tree | bcf6bac3dc4d8e1ce07b6d883b0e30990025f834 /src/include/executor | |
parent | 0240a00fbd4fd14f577edf8d36a032237fd0b9cb (diff) | |
download | postgresql-1fb6f62a84041b668fd9e85a2f33bb3a0fd28fdc.tar.gz postgresql-1fb6f62a84041b668fd9e85a2f33bb3a0fd28fdc.zip |
Fix typos in various places
Author: Andrea Gelmini
Reviewed-by: Michael Paquier, Justin Pryzby
Discussion: https://postgr.es/m/20190528181718.GA39034@glet
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/tuptable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/tuptable.h b/src/include/executor/tuptable.h index 6eaa678a1e7..d9122803863 100644 --- a/src/include/executor/tuptable.h +++ b/src/include/executor/tuptable.h @@ -200,7 +200,7 @@ struct TupleTableSlotOps * copy needs to be palloc'd in the current memory context. The slot * itself is expected to remain unaffected. It is *not* expected to have * meaningful "system columns" in the copy. The copy is not be "owned" by - * the slot i.e. the caller has to take responsibilty to free memory + * the slot i.e. the caller has to take responsibility to free memory * consumed by the slot. */ HeapTuple (*copy_heap_tuple) (TupleTableSlot *slot); @@ -210,7 +210,7 @@ struct TupleTableSlotOps * The copy needs to be palloc'd in the current memory context. The slot * itself is expected to remain unaffected. It is *not* expected to have * meaningful "system columns" in the copy. The copy is not be "owned" by - * the slot i.e. the caller has to take responsibilty to free memory + * the slot i.e. the caller has to take responsibility to free memory * consumed by the slot. */ MinimalTuple (*copy_minimal_tuple) (TupleTableSlot *slot); |