Issue description
createReader() example line 12 has an error.
String[] pieces = split(line, TAB);
URL(s) of affected page(s)
https://processing.org/reference/createReader_.html
Proposed fix
should read
String[] pieces = split(line, "t");
that is the the .txt file in the createWriter example uses.