Skip to content

Commit

Permalink
Correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ziyi105 committed Nov 13, 2023
1 parent 8472c4b commit af9d862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/cafectrl/storage/Decoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public static Pantry decodePantryStockData(ArrayList<String> encodedPantryStock)
logger.info("Line to decode: " + encodedData);
String[] decodedData = encodedData.split(DIVIDER);
if (!isValidPantryStockFormat(decodedData)) {
ui.showToUser(ErrorMessages.ERROR_IN_PANTRY_S346TOCK_DATA + encodedData);
ui.showToUser(ErrorMessages.ERROR_IN_PANTRY_STOCK_DATA + encodedData);
continue;
}
String ingredientName = decodedData[0].trim();
Expand Down

0 comments on commit af9d862

Please sign in to comment.