diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-06-08 14:13:21 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-06-08 23:25:13 -0700 |
commit | 1f3ffe4c6058f20e1f7d746ababdd669651e8d2b (patch) | |
tree | 147520963bb8937173ffbbb6ca78615d5256075b /pp_hot.c | |
parent | c549afe0d456f55513209483c7ddf6040ddeb9d7 (diff) | |
download | perl-1f3ffe4c6058f20e1f7d746ababdd669651e8d2b.tar.gz |
pp_hot.c: Correct comment
At this point, ob holds the object the reference points to, not the
reference itself.
Diffstat (limited to 'pp_hot.c')
-rw-r--r-- | pp_hot.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3116,7 +3116,7 @@ S_method_common(pTHX_ SV* meth, U32* hashp) *(PL_stack_base + TOPMARK + 1) = sv_2mortal(newRV(MUTABLE_SV(iogv))); } - /* if we got here, ob should be a reference or a glob */ + /* if we got here, ob should be an object or a glob */ if (!ob || !(SvOBJECT(ob) || (SvTYPE(ob) == SVt_PVGV && isGV_with_GP(ob) |