diff --git a/src/com/sheepit/client/Error.java b/src/com/sheepit/client/Error.java index 0b23352..b114bce 100644 --- a/src/com/sheepit/client/Error.java +++ b/src/com/sheepit/client/Error.java @@ -125,7 +125,7 @@ public class Error { case AUTHENTICATION_FAILED: return "Failed to authenticate, please check your login and password"; case DOWNLOAD_FILE: - return "Error will downloading project's needed files. Will try another project in a few minutes."; + return "Error while downloading project files. Will try another project in a few minutes."; case NOOUTPUTFILE: return "Renderer has generated no output file, possibly a wrong project configuration or you are missing required libraries. Will try another project in a few minutes."; case RENDERER_CRASHED: diff --git a/src/com/sheepit/client/os/Linux.java b/src/com/sheepit/client/os/Linux.java index 1d965b9..75b55dd 100644 --- a/src/com/sheepit/client/os/Linux.java +++ b/src/com/sheepit/client/os/Linux.java @@ -79,7 +79,7 @@ public class Linux extends OS { scanner.close(); } catch (java.lang.NoClassDefFoundError e) { - System.err.println("OS.Linux::getCPU error " + e + " mostly because Scanner class was introducted by Java 5 and you are running a lower version"); + System.err.println("OS.Linux::getCPU error " + e + " mostly because Scanner class was introduced by Java 5 and you are running a lower version"); } catch (Exception e) { e.printStackTrace();