diff --git a/pom.xml b/pom.xml
index bddd762a..f37f39d5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
4.0.0
bh.bot
99bot
- 1.5.6
+ 1.5.7
diff --git a/src/main/java/bh/bot/app/SettingApp.java b/src/main/java/bh/bot/app/SettingApp.java
index d6f82436..2d048017 100644
--- a/src/main/java/bh/bot/app/SettingApp.java
+++ b/src/main/java/bh/bot/app/SettingApp.java
@@ -98,7 +98,7 @@ protected void internalRun(String[] args) {
else
sb.append(" world boss has not been set");
sb.append('\n');
- sb.append(String.format("Do you want to save the above setting into profile number %d ?", cfgProfileName));
+ sb.append(String.format("Do you want to save the above setting into profile name '%s' ?", cfgProfileName));
boolean save = readInput(sb.toString(), "Press Y/N then enter", s -> {
s = s.trim().toLowerCase();
if (s.equals("y"))
diff --git a/src/main/java/bh/bot/common/types/flags/FlagShutdownAfterFinished.java b/src/main/java/bh/bot/common/types/flags/FlagShutdownAfterFinished.java
index 46df7fc6..6d6026e6 100644
--- a/src/main/java/bh/bot/common/types/flags/FlagShutdownAfterFinished.java
+++ b/src/main/java/bh/bot/common/types/flags/FlagShutdownAfterFinished.java
@@ -17,7 +17,7 @@ public String getName() {
@Override
public String getDescription() {
- return String.format("Shutdown your desktop/laptop within %d minutes after program exited. Should combines with flag `--exit`", shutdownAfterXMinutes);
+ return String.format("Shutdown your computer within %d minutes after program exited. Should combines with flag `--exit`", shutdownAfterXMinutes);
}
@Override