Skip to content

Commit

Permalink
1.5.7 fix setting app
Browse files Browse the repository at this point in the history
  • Loading branch information
9-9-9-9 committed Sep 6, 2021
1 parent 035477e commit 46f6a2e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>bh.bot</groupId>
<artifactId>99bot</artifactId>
<version>1.5.6</version>
<version>1.5.7</version>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/bh/bot/app/SettingApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 46f6a2e

Please sign in to comment.