Skip to content

Commit

Permalink
MainApp.java: Fix typo Address Book -> AddressBook
Browse files Browse the repository at this point in the history
When launching AB3 from terminal using java -jar, the start
of logging says 'Starting AddressBook' while the end says
'Stopping Address Book'.

Let's fix this inconsistency by changing it to 'Stopping 
AddressBook' in MainApp.java.
  • Loading branch information
baskargopinath authored Jul 23, 2024
1 parent a736a75 commit 934f740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void start(Stage primaryStage) {

@Override
public void stop() {
logger.info("============================ [ Stopping Address Book ] =============================");
logger.info("============================ [ Stopping AddressBook ] =============================");
try {
storage.saveUserPrefs(model.getUserPrefs());
} catch (IOException e) {
Expand Down

0 comments on commit 934f740

Please sign in to comment.