fix(ch4s4): correct syntax error

This commit is contained in:
Dan K 2019-07-19 16:42:26 -04:00
parent 2c450b33f4
commit c37d409c1d

View file

@ -19,7 +19,7 @@ public class ServerHostEndPoint {
catch (Exception e) {
e.printStackTrace();
}
String msg = "I am running on server "+host+" Version 1.0 \n"
String msg = "I am running on server "+host+" Version 1.0 \n";
return Response.ok(msg).build();
}
}