]> granicus.if.org Git - postgresql/commitdiff
Fix misleading comments
authorPeter Eisentraut <peter_e@gmx.net>
Tue, 8 May 2012 16:35:22 +0000 (19:35 +0300)
committerPeter Eisentraut <peter_e@gmx.net>
Tue, 8 May 2012 16:35:22 +0000 (19:35 +0300)
Josh Kupershmidt

contrib/pgcrypto/pgp-compress.c
src/pl/plperl/plperl_helpers.h

index 7a9516b07082464178a9fa2128eb31830f7648f9..c59245340216dc3c2ead2da267b1fbace40bbf82 100644 (file)
@@ -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)
 {
index 35e1257457ff2d6ea57015ab42a273461e9862cf..2c17790062b5c5e6bcffde2aff7dabbc20b0461f 100644 (file)
@@ -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);