Fix: Typo in ServerApp class

This commit is contained in:
Lars Simon Winzer
2026-03-04 11:30:37 +01:00
parent 129acd39d4
commit bf0dadc977
@@ -3,6 +3,6 @@ package ch.unibas.dmi.dbis.cs108.casono.server;
public class ServerApp {
public static void start(String arg) {
int port = Integer.parseInt(arg);
System.out.println("You've selected the server. It will accept connections at port" + port);
System.out.println("You've selected the server. It will accept connections at port " + port);
}
}