diff options
author | Simon Cozens <simon@netthink.co.uk> | 2001-03-27 02:12:01 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-27 14:42:30 +0000 |
commit | 3fd4402b77b8d20df0d1c764b534fa290d41b2d3 (patch) | |
tree | 227506225cc4df6b96c886ca5f47be6a4fbd862a | |
parent | 244826ebc30b533e32f299fd464a9d2df6f38a1a (diff) | |
download | perl-3fd4402b77b8d20df0d1c764b534fa290d41b2d3.tar.gz |
perlvar nit
Message-ID: <20010327011201.A19179@netthink.co.uk>
p4raw-id: //depot/perl@9378
-rw-r--r-- | pod/perlvar.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod index 718484f466..fc3a746baa 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -944,7 +944,7 @@ This can be used to determine whether the Perl interpreter executing a script is in the right range of versions. (Mnemonic: use ^V for Version Control.) Example: - warn "No "our" declarations!\n" if $^V and $^V lt v5.6.0; + warn "No \"our\" declarations!\n" if $^V and $^V lt v5.6.0; See the documentation of C<use VERSION> and C<require VERSION> for a convenient way to fail if the running Perl interpreter is too old. |