From e4704001ea4c3d63b53e8783859ff598ef2f69e5 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 10 Mar 2003 22:28:22 +0000 Subject: This patch fixes a bunch of spelling mistakes in comments throughout the PostgreSQL source code. Neil Conway --- contrib/intagg/int_aggregate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/intagg') diff --git a/contrib/intagg/int_aggregate.c b/contrib/intagg/int_aggregate.c index fc08137d4d..1c14e7c2db 100644 --- a/contrib/intagg/int_aggregate.c +++ b/contrib/intagg/int_aggregate.c @@ -191,7 +191,7 @@ int_agg_state(PG_FUNCTION_ARGS) } /* This is the final function used for the integer aggregator. It returns all the integers - * collected as a one dimentional integer array */ + * collected as a one dimensional integer array */ Datum int_agg_final_array(PG_FUNCTION_ARGS) { @@ -225,7 +225,7 @@ int_enum(PG_FUNCTION_ARGS) /* Allocate a working context */ pc = (CTX *) palloc(sizeof(CTX)); - /* Don't copy atribute if you don't need too */ + /* Don't copy attribute if you don't need too */ if (VARATT_IS_EXTENDED(p)) { /* Toasted!!! */ -- cgit v1.2.1