Skip to content

Commit 2eebb47

Browse files
committed
Fixed typo in StudySessionInteractor error message
1 parent 6ec83c8 commit 2eebb47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/study_mode_use_case/StudySessionInteractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public StudySettingsResponseModel getSetToStudy(StudySettingsRequestModel reques
7272
this.studier = builder.buildStudier(request.getFlashcardSetId(), request.isTermDefault());
7373

7474
if (this.studier.getNumFlashcards() == 0) {
75-
String error = "<html>This flashcard set is empty. Please add some flashcard to begin studying!</html>";
75+
String error = "<html>This flashcard set is empty. Please add some flashcards to begin studying!</html>";
7676
return presenter.prepareFailedStudyView(error);
7777
}
7878
else {

0 commit comments

Comments
 (0)