Skip to content

Commit

Permalink
Merge pull request #209 from bentohset/master
Browse files Browse the repository at this point in the history
fix bug
  • Loading branch information
bentohset authored Apr 10, 2023
2 parents fb03bcd + 99f1e7e commit 23d2465
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/team/bentohset.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Storage object diagram:

Add module sequence diagram:

![AddModuleSequenceDiagram](/docs/uml/diagrams/AddModSequence.png)
![AddModuleSequenceDiagram](../uml/diagrams/AddModSequence.png)

Remove module sequence diagram:

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/penus/storage/StorageDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static User decodeUser(String userLine) throws PenusException {
public static Module decodemodule(String module) throws PenusException {
String[] components = module.split(" ### ");
String status = components[0].trim();
String moduleCode = components[1].trim();
String moduleCode = components[1].trim().toUpperCase();
if (!ModuleRetriever.isValidMod(moduleCode)) {
throw new InvalidModuleException();
}
Expand Down

0 comments on commit 23d2465

Please sign in to comment.