Skip to content

Commit b220409

Browse files
committed
docs(README): Minor fix: rounding string version
1 parent 1451e7d commit b220409

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ begin
9696
Result := '';
9797
Q := V div 10;
9898
R := V - (Q * 10);
99-
Result := IntToStr(Q) + '.' + IntToStr(R);
99+
Result := Result + IntToStr(Q) + '.' + IntToStr(R);
100100
end;
101101
102102
procedure Test;

0 commit comments

Comments
 (0)