mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-07-10 03:03:31 +00:00
fixed bug in function description(comment).
This commit is contained in:
parent
65baeb77a9
commit
7ffdb0859b
1 changed files with 5 additions and 5 deletions
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue