Reference/Sample Code Minor Correction or Suggestion

In file://localhost/Applications/Arduino.app/Contents/Resources/Java/reference/Serial_Print.html the sample code could be slightly improved by changing

Serial.print("BIN");
Serial.print("\t");

to

Serial.print("BIN");
Serial.print("\n");

As it is currently written the output for the first data line in the table appears to the right of the headings instead of underneath:

NO FORMAT DEC HEX OCT BIN 0 0 0 0 0
1 1 1 1 1
2 2 2 2 10