Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/REFERENCES/brightscript/interfaces/ifstringops.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Appends the specified first set of characters of the provided string to the end

The AppendString() function modifies the object on which it is called, which can result in unexpected results if called on a literal string constant rather than a string object. Consider the following example:

```
```brightscript
x = "one"
print type(x) ' prints "String"
x.AppendString("two", 3)
Expand Down
Loading