From 7105ad5a06c2b5fe8c4228488628eeba77431dcb Mon Sep 17 00:00:00 2001 From: levlam Date: Thu, 25 Apr 2019 16:46:03 +0300 Subject: [PATCH] tdweb: update documentation. GitOrigin-RevId: 6174e477a5e85b77408f009e2ec8261fee7710ae --- example/web/tdweb/src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/web/tdweb/src/index.js b/example/web/tdweb/src/index.js index f207f438..02e4c397 100644 --- a/example/web/tdweb/src/index.js +++ b/example/web/tdweb/src/index.js @@ -12,7 +12,7 @@ const sleep = ms => new Promise(res => setTimeout(res, ms)); * TDLib can be compiled to WebAssembly or asm.js using Emscripten compiler and used in a browser from JavaScript. * This is a convenient wrapper for TDLib in a browser which controls TDLib instance creation, handles interaction * with the TDLib and manages a filesystem for persistent TDLib data. - * TDLib instance is created in a Web Worker, because TDLib needs synchronous access to filesystem and the IndexedDB. + * TDLib instance is created in a Web Worker to run it in a separate thread. * TdClient just sends queries to the Web Worker and receive updates and results from it. *
*