From 7054501e5effc8516842134132447e42defaae5d Mon Sep 17 00:00:00 2001 From: Andy Li <1450947+andy1li@users.noreply.github.com> Date: Mon, 12 May 2025 13:53:44 +0800 Subject: [PATCH 1/2] docs: clarify response body representation in course definition - Updated comments in the course definition to specify that the response body should be sent as binary data, enhancing clarity for learners. --- course-definition.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/course-definition.yml b/course-definition.yml index 225fd80..8289d4d 100644 --- a/course-definition.yml +++ b/course-definition.yml @@ -825,8 +825,8 @@ stages: Content-Type: text/plain Content-Length: 23 - 1F 8B 08 00 00 00 00 00 // Hexadecimal representation of the response body - 00 03 4B 4C 4A 06 00 C2 + 1F 8B 08 00 00 00 00 00 // This is just showing the response body as hex. + 00 03 4B 4C 4A 06 00 C2 // It should actually be sent as binary data. 41 24 35 03 00 00 00 ``` From 090f1c2fcde4d079e3a803e1780f31ecd82445dd Mon Sep 17 00:00:00 2001 From: Andy Li