From ca664b05f4cb532ff9028c4f96e63824e78fbbd4 Mon Sep 17 00:00:00 2001 From: Baptiste Lepilleur Date: Wed, 18 Dec 2024 21:48:38 +0100 Subject: [PATCH] * add missing await in "Editing a document locally" example. (#888) --- docs/server/examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/server/examples.md b/docs/server/examples.md index f64b01f8..f1265e12 100644 --- a/docs/server/examples.md +++ b/docs/server/examples.md @@ -222,5 +222,5 @@ await docConnection.transact((doc) => { doc.getMap('test').set('a', 'b'); }); -docConnection.disconnect() +await docConnection.disconnect() ```