From: Peter Eisentraut Date: Tue, 8 May 2012 16:35:22 +0000 (+0300) Subject: Fix misleading comments X-Git-Tag: REL9_2_BETA1~48 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dcb2c5838183d3d305dbf713d4519d094f835b2f;p=thirdparty%2Fpostgresql.git Fix misleading comments Josh Kupershmidt --- diff --git a/contrib/pgcrypto/pgp-compress.c b/contrib/pgcrypto/pgp-compress.c index 7a9516b0708..c5924534021 100644 --- a/contrib/pgcrypto/pgp-compress.c +++ b/contrib/pgcrypto/pgp-compress.c @@ -105,7 +105,7 @@ compress_init(PushFilter *next, void *init_arg, void **priv_p) /* writes compressed data packet */ -/* cant handle zero-len incoming data, but shouldnt */ +/* can handle zero-len incoming data, but shouldn't */ static int compress_process(PushFilter *next, void *priv, const uint8 *data, int len) { diff --git a/src/pl/plperl/plperl_helpers.h b/src/pl/plperl/plperl_helpers.h index 35e1257457f..2c17790062b 100644 --- a/src/pl/plperl/plperl_helpers.h +++ b/src/pl/plperl/plperl_helpers.h @@ -62,7 +62,7 @@ sv2cstr(SV *sv) (SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM)) sv = newSVsv(sv); else - /* increase the reference count so we cant just SvREFCNT_dec() it when + /* increase the reference count so we can just SvREFCNT_dec() it when * we are done */ SvREFCNT_inc(sv);