Skip to content

Commit

Permalink
colon to dot after quiz question numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
mantagen committed Aug 29, 2024
1 parent bd6b667 commit 45cd59d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function QuizPreview(questions, featureFlag) {

return (
<div key={index} className="copy-to-clipboard my-14">
<p>Question {index + 1}:</p>
<p>Question {index + 1}.</p>
<p className="mb-8 text-xl font-semibold">
{question.question.value}
</p>
Expand Down
2 changes: 1 addition & 1 deletion packages/aila/src/protocol/sectionToMarkdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export function organiseAnswersAndDistractors(quiz: QuizOptional) {
...answers,
...distractors,
]).join("\n");
return `### ${i + 1}: ${v.question ?? "…"}\n\n${answersAndDistractors}`;
return `### ${i + 1}. ${v.question ?? "…"}\n\n${answersAndDistractors}`;
})
.join("\n\n");
}

0 comments on commit 45cd59d

Please sign in to comment.