From 0ebfbf8d2cf4cc21b61e615984b00fbef167a609 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Fri, 1 Jun 2012 09:20:32 -0400 Subject: [PATCH] Fixing typo in custom error message. --- app/src/processing/app/debug/Compiler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/debug/Compiler.java b/app/src/processing/app/debug/Compiler.java index 80122ec6a..6d469e276 100644 --- a/app/src/processing/app/debug/Compiler.java +++ b/app/src/processing/app/debug/Compiler.java @@ -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'")) {