diff --git a/source/net.html.md.erb b/source/net.html.md.erb
index 4b9cfafa..278c0778 100644
--- a/source/net.html.md.erb
+++ b/source/net.html.md.erb
@@ -350,7 +350,7 @@ The `"sanitisedContent"` field of `EmailNotificationResponse` object shows how N
public Dictionary> sanitisedContent;
{
"name", {
- "unsanitised", "Anne Example, now [click this evil link](https://evil.link)"
+ "unsanitised", "Anne Example, now [click this evil link](https://evil.link)",
"sanitised", "Anne Example, now \[click this evil link\]\(\)"
}
}
diff --git a/source/node.html.md.erb b/source/node.html.md.erb
index ae55ff89..55ba90d6 100644
--- a/source/node.html.md.erb
+++ b/source/node.html.md.erb
@@ -354,8 +354,8 @@ The `"sanitised_content"` field of `response` shows how Notify has sanitised the
```javascript
{
"name": {
- "unsanitised": "Anne Example, now [click this evil link](https://evil.link)"
- "sanitised": "Anne Example, now \[click this evil link\]\(\)\"
+ "unsanitised": "Anne Example, now [click this evil link](https://evil.link)",
+ "sanitised": "Anne Example, now \[click this evil link\]\(\)"
}
}
diff --git a/source/python.html.md.erb b/source/python.html.md.erb
index 32747bb9..5a92ee6b 100644
--- a/source/python.html.md.erb
+++ b/source/python.html.md.erb
@@ -304,7 +304,7 @@ The `"sanitised_content"` field of `response` shows how Notify has sanitised the
```python
{
"name": {
- "unsanitised": "Anne Example, now [click this evil link](https://evil.link)"
+ "unsanitised": "Anne Example, now [click this evil link](https://evil.link)",
"sanitised": "Anne Example, now \[click this evil link\]\(\)"
}
}
diff --git a/source/rest-api.html.md.erb b/source/rest-api.html.md.erb
index b114cc97..a518c9dd 100644
--- a/source/rest-api.html.md.erb
+++ b/source/rest-api.html.md.erb
@@ -354,8 +354,8 @@ The `"sanitised_content"` field of `response` shows how Notify has sanitised the
{
"sanitised_content": {
"name": {
- "unsanitised": "Anne Example, now [click this evil link](https://evil.link)"
- "sanitised": "Anne Example, now \[click this evil link\]\(\)\"
+ "unsanitised": "Anne Example, now [click this evil link](https://evil.link)",
+ "sanitised": "Anne Example, now \[click this evil link\]\(\)"
}
}
}