Skip to content

Commit 8c17aba

Browse files
fix: Corrected apostrophe in quiz reminder string
The apostrophe in the `quiz_reminder_body` string was incorrectly escaped as `'`. This commit changes it to `\s` for proper display.
1 parent 2f28c98 commit 8c17aba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,6 @@
440440
<string name="quiz_finished">Quiz complete! Your score: %1$d/%2$d</string>
441441
<string name="quiz_no_more_questions">No more questions, check further updates for more.</string>
442442
<string name="quiz_reminder_title">Daily Quiz Reminder</string>
443-
<string name="quiz_reminder_body">Come back for today&#39;s quiz!</string>
443+
<string name="quiz_reminder_body">Come back for today\s quiz!</string>
444444
<string name="other_apps_title">More apps by the developer</string>
445445
</resources>

0 commit comments

Comments
 (0)