use single quotes instead of double quotes

pull/1692/head
Isaac Connor 2016-05-03 10:23:09 -04:00
parent fed575bdb4
commit e3d581dcab
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ require Exporter;
our @ISA = qw(Exporter);
use constant ZM_VERSION => "@VERSION@";
use constant ZM_VERSION => '@VERSION@';
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
@ -47,7 +47,7 @@ our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
our @EXPORT = qw();
our $VERSION = "@VERSION@";
our $VERSION = '@VERSION@';
1;
__END__