> cvsuser 02/01/08 14:55:59 > > Modified: docs vtables.pod > Log: > Clarify what get_string should do. > > Revision Changes Path > 1.7 +4 -1 parrot/docs/vtables.pod > > --- vtables.pod 4 Jan 2002 00:51:00 -0000 1.6 > +++ vtables.pod 8 Jan 2002 22:55:59 -0000 1.7 > @@ -226,7 +226,10 @@ > > =item C<get_string> > > -Return a string representation of yourself. > +Return a string representation of yourself (a STRING* object), this > +should be a B<copy> of whatever string you are holding, not just a > +pointer to your own string so that anything that calls this method can > +happily modify this value without making a mess of your guts.
I think the comma after (a STRING* object) should be a semicolon or a '--'. R.