fixed bug in function description(comment).

This commit is contained in:
Norayr Chilingarian 2026-05-06 20:28:02 +04:00
parent 65baeb77a9
commit 7ffdb0859b

View file

@ -10,7 +10,7 @@ Strings.Insert(src, pos, dst)
to hold the result of the operation, the result is truncated so that dst is always to hold the result of the operation, the result is truncated so that dst is always
terminated with a 0X. terminated with a 0X.
Strings.Append(s, dst) Strings.Append(s, dst)
has the same effect as Insert(s, Length(s), dst). has the same effect as Insert(s, Length(dst), dst).
Strings.Delete(s, pos, n) Strings.Delete(s, pos, n)
deletes n characters from s starting at position pos (0 <= pos < Length(s)). deletes n characters from s starting at position pos (0 <= pos < Length(s)).
If n > Length(s) - pos, the new length of s is pos. If n > Length(s) - pos, the new length of s is pos.