summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/pgcrypto/pgp-compress.c2
-rw-r--r--src/pl/plperl/plperl_helpers.h2
2 files changed, 2 insertions, 2 deletions
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);