Fixing typo in custom error message.

This commit is contained in:
David A. Mellis 2012-06-01 09:20:32 -04:00
parent 4b7bc3b584
commit 0ebfbf8d2c
1 changed files with 1 additions and 1 deletions

View File

@ -491,7 +491,7 @@ public class Compiler implements MessageConsumer {
if (pieces[3].trim().equals("'Udp' was not declared in this scope")) {
error = _("The Udp class has been renamed EthernetUdp.");
msg = _("\nAs of Arduino 1.0, the Udp class in the Ethernet library " +
"has been renamed to EthernetClient.\n\n");
"has been renamed to EthernetUdp.\n\n");
}
if (pieces[3].trim().equals("'class TwoWire' has no member named 'send'")) {