diff options
author | joe <joe@FreeBSD.org> | 2000-10-18 17:12:07 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2000-10-18 17:12:07 +0000 |
commit | 440545207b3ae09182709e03c58387bfc5f8cd16 (patch) | |
tree | 4fbf9d9b8d11bc96881b1017e847117bf1841a6c /share | |
parent | 885aebae37e0ce1fcf880cb43a1286e5108d07ac (diff) | |
download | FreeBSD-src-440545207b3ae09182709e03c58387bfc5f8cd16.zip FreeBSD-src-440545207b3ae09182709e03c58387bfc5f8cd16.tar.gz |
Fix the places that I missed last commit: 'vars' not 'var'.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man7/style.perl.7 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man7/style.perl.7 b/share/man/man7/style.perl.7 index 05df69a..ae253e9 100644 --- a/share/man/man7/style.perl.7 +++ b/share/man/man7/style.perl.7 @@ -94,7 +94,7 @@ definition didn't exist prior to perl5. .Pp In most cases globals should be defined at the top of the code using a -.Fa var +.Fa vars definition block: .Bd -literal -offset 0i use vars qw($globalscalar @globalarray %globalhash); @@ -105,7 +105,7 @@ In some cases it may be appropriate to use .Va $variable = .Li "value"; statements at the top of the script as an alternative to using -.Fa var +.Fa vars declarations. .Pp Whenever possible code should be run through the code checker |