diff options
author | 2024-04-02 16:54:15 +0100 | |
---|---|---|
committer | 2024-04-02 16:54:15 +0100 | |
commit | 827445b87f057b063adad1126e738fb61637caf7 (patch) | |
tree | 7f9d78f0a79005c3a5f45d10bb99f1ef088e8e6c | |
parent | Bump lxml from 5.1.1 to 5.2.0 (#1496) (diff) | |
parent | Trivia quiz: Fix question about surrogate codepoints (diff) |
Merge pull request #1505 from python-discord/L3viathan-fix-surrogate-question
Trivia quiz: Fix question about surrogate codepoints
-rw-r--r-- | bot/resources/fun/trivia_quiz.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/resources/fun/trivia_quiz.json b/bot/resources/fun/trivia_quiz.json index 1e69d934..1802ad2b 100644 --- a/bot/resources/fun/trivia_quiz.json +++ b/bot/resources/fun/trivia_quiz.json @@ -723,8 +723,8 @@ }, { "id": 423, - "question": "What is the name for unicode codepoints that do not fit into 16 bits?", - "answer": "surrogates" + "question": "What kind of characters are needed in UTF-16 to encode unicode codepoints outside the BMP?", + "answer": ["surrogates", "surrogate"] }, { "id": 424, |