From c68d017f4e25ab979c53b953d2bcfb2d04be2fa5 Mon Sep 17 00:00:00 2001 From: Stephen Oberholtzer Date: Tue, 14 Mar 2017 16:23:26 -0400 Subject: [PATCH] Fix typos in comments --- src/perl/perl-core.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/perl/perl-core.h b/src/perl/perl-core.h index fc003f20..b66ab65b 100644 --- a/src/perl/perl-core.h +++ b/src/perl/perl-core.h @@ -16,7 +16,7 @@ typedef struct { */ uint8_t destroyed; /** Script signal suppression counter. If greater than zero, - * signals and commands should not be delivered to the script.e + * signals and commands should not be delivered to the script. */ int8_t disable_signals; /** PERL_SCRIPT_REC reference counter. */ @@ -33,13 +33,13 @@ void perl_scripts_deinit(void); void perl_scripts_autorun(void); /** Load a perl script, path must be a full path. - * If an error occurs while loading the script, the return value is null. + * If an error occurs while loading the script, the return value is NULL. * Otherwise, the returned pointer has an extra reference that must be * released with perl_script_unref(). */ PERL_SCRIPT_REC *perl_script_load_file(const char *path); /** Load a perl script from given data. - * If an error occurs while loading the script, the return value is null. + * If an error occurs while loading the script, the return value is NULL. * Otherwise, the returned pointer has an extra reference that must be * released with perl_script_unref(). */