issue in page refsu39.html
after the line
"The keyword “inherited” can be used to refer to the parent definition of the property. For example consider the following code:"
it's not
**procedure **TClassA.GetP : char;
begin
Result:=Char((Inherited P) and $FF);
end;
but
**Function **TClassA.GetP : char;
begin
Result:=Char((Inherited P) and $FF);
end;