Documentation error: String.Mid

Note following example offered at http://developer.xojo.com/string$Mid

Dim s As String = "Hello, World!" s = s.Mid(7, 5) ' s = "World"

That should be

Dim s As String = "Hello, World!" s = s.Mid(8, 5) ' s = "World"

Thanks for noticing this. I’ve corrected the sample code.