From 3114d8d4acbdeb304341b4b41587429412185faa Mon Sep 17 00:00:00 2001 From: danielpeintner Date: Tue, 15 Oct 2024 10:22:09 +0200 Subject: [PATCH] Minor typo in example code (#564) --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 12405f6..da5de4a 100644 --- a/index.html +++ b/index.html @@ -2484,7 +2484,7 @@

ConsumedThing Examples

const reader = video.data.getReader() reader.read().then(function processVideo({ done, value }) { if (done) { - console.log("live video stoped"); + console.log("live video stopped"); return; } const decoded = decode(value)