From 4813e573c23ee1c7ca358e57b89e3ed93a4d40f6 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Tue, 16 Jun 2015 10:52:08 +0200 Subject: [PATCH] Fixed typo --- arduino-core/src/cc/arduino/utils/network/FileDownloader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arduino-core/src/cc/arduino/utils/network/FileDownloader.java b/arduino-core/src/cc/arduino/utils/network/FileDownloader.java index bc8596a9e..c874c556d 100644 --- a/arduino-core/src/cc/arduino/utils/network/FileDownloader.java +++ b/arduino-core/src/cc/arduino/utils/network/FileDownloader.java @@ -157,7 +157,7 @@ public class FileDownloader extends Observable { } if (resp < 200 || resp >= 300) { - throw new IOException("Recevied invalid http status code from server: " + resp); + throw new IOException("Received invalid http status code from server: " + resp); } // Check for valid content length.