diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-04 23:55:19 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-04 23:55:19 -0400 |
commit | 04db6f32b249ffb17c571cd6b16c8c54397f0be4 (patch) | |
tree | 1cd8fb31b849b4d5be00d4be0e3db92bbbafb5e1 /ufund-api | |
parent | 483f74a420f7aabe4ef0eeafeb668bd9f0da12be (diff) | |
download | JellySolutions-04db6f32b249ffb17c571cd6b16c8c54397f0be4.tar.gz JellySolutions-04db6f32b249ffb17c571cd6b16c8c54397f0be4.tar.bz2 JellySolutions-04db6f32b249ffb17c571cd6b16c8c54397f0be4.zip |
Fix typos
Diffstat (limited to 'ufund-api')
-rw-r--r-- | ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java b/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java index 075878a..5452c81 100644 --- a/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java +++ b/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java @@ -198,7 +198,7 @@ public class CupboardController { for (Map<String, Integer> map : data) { int needID = map.get("needID"); if (cupboardService.getNeed(needID) == null) { - return new ResponseEntity<>("One or more need is invalid, please refresh.", HttpStatus.BAD_REQUEST); + return new ResponseEntity<>("One or more needs are invalid, please refresh.", HttpStatus.BAD_REQUEST); } } for (Map<String, Integer> map : data) { |