diff --git a/docs/REFERENCES/brightscript/interfaces/ifstringops.md b/docs/REFERENCES/brightscript/interfaces/ifstringops.md index f98e2fb2..80c55841 100644 --- a/docs/REFERENCES/brightscript/interfaces/ifstringops.md +++ b/docs/REFERENCES/brightscript/interfaces/ifstringops.md @@ -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)