From bb424c5ee1c92c1a1da34f3b463fc91e8c4d78ef Mon Sep 17 00:00:00 2001 From: Oleg Ermakov Date: Sun, 10 Jul 2022 21:31:59 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd8f896..43b4bd5 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ text = d1.get_text('test') # Start a transaction in order to update the text with d1.begin_transaction() as txn: # Add text contents - text.push(txn, "hello world!") + text.extend(txn, "hello world!") # Create another document d2 = Y.YDoc()