Skip to content

Commit

Permalink
make concepts in rehearse-mode upper case
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornregnell committed Oct 13, 2024
1 parent 808832e commit fe7d117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/model.scala
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ abstract class Questions:
s"$questionToAsk\n$question$punctuation\n\n$instruction"

def getShortQuestion(question: String | (String, String)): String =
s"$questionToAsk $question$punctuation"
s"$questionToAsk ${question.toString.toUpperCase}$punctuation"

object Questions:
val types: Vector[Questions] = Vector(Concepts, Contrasts, Code)
Expand Down

0 comments on commit fe7d117

Please sign in to comment.