diff options
author | Marcel GrĂ¼nauer <gr@univie.ac.at> | 2011-05-18 21:56:51 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-05-19 06:18:27 -0700 |
commit | 1c2e8ccaafb0b2b10b96f3d2dfb1b3396382ec57 (patch) | |
tree | eef34babebb54a9251bcfee3e81e3165611631af /t/op/eval.t | |
parent | dd3b644602f47f2e7b61ad3bc013f6928ee8244d (diff) | |
download | perl-1c2e8ccaafb0b2b10b96f3d2dfb1b3396382ec57.tar.gz |
[perl #90306] Fix simple typos
Diffstat (limited to 't/op/eval.t')
-rw-r--r-- | t/op/eval.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/eval.t b/t/op/eval.t index fbe939c2c0..49a1ccab41 100644 --- a/t/op/eval.t +++ b/t/op/eval.t @@ -516,7 +516,7 @@ END_EVAL_TEST # test that the CV compiled for the eval is freed by checking that no additional # reference to outside lexicals are made. my $x; - is(Internals::SvREFCNT($x), 1, "originally only 1 referece"); + is(Internals::SvREFCNT($x), 1, "originally only 1 reference"); eval '$x'; is(Internals::SvREFCNT($x), 1, "execution eval doesn't create new references"); } |