Skip to content

Commit 0ff9d07

Browse files
author
MA
committed
2 parents 5aadbcc + 80432e0 commit 0ff9d07

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Headers headers;
8787

8888
headers.contentType = "application/json";
8989
headers.connection = "keep-alive";
90-
headers.cookie = "abc=def,ghi=jkl";
90+
headers.cookie = "abc=def,ghi=jkl"; // Not yet supported.
9191
```
9292
# Response
9393

@@ -103,10 +103,10 @@ unsigned int[] array = response.arrayBuffer(); // Not yet supported.
103103
bool ok = response.ok;
104104
int status = response.status;
105105
const char* statusText = response.statusText;
106-
bool redirected = response.redirected;
107-
const char* type = response.type;
106+
bool redirected = response.redirected; // Not yet supported.
107+
const char* type = response.type; // Not yet supported.
108108
const char* response.headers.get("content-type");
109-
Headers headers = response.headers.raw();
110-
const char* contentTypeHeader = headers["content-type"];
109+
Headers headers = response.headers.raw(); // Not yet supported
110+
const char* contentTypeHeader = headers["content-type"]; // Not yet supported.
111111

112112
```

0 commit comments

Comments
 (0)