diff --git a/patching-explainer.md b/patching-explainer.md
index 8d61566..4153061 100644
--- a/patching-explainer.md
+++ b/patching-explainer.md
@@ -162,9 +162,10 @@ For example:
```html
-
@@ -172,18 +173,18 @@ For example:
async function update_results() {
const writer = container.streamAppendHTMLUnsafe().getWriter();
await writer.write(`
-
-
+
Result 1
-
+
`);
await writer.write(`
-
+
Result 2
-
+
`);
+ // Add as many more results streaming in later as you see fit.
}
```