From 6c77006bccd2e61e9d19bb30040851bab274df27 Mon Sep 17 00:00:00 2001 From: usedtobe <784406842@qq.com> Date: Mon, 17 Apr 2023 21:34:50 +0800 Subject: [PATCH] docs: fix typo (#1984) --- docs/contributing/behind-the-code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/behind-the-code.md b/docs/contributing/behind-the-code.md index c3346070b..fa9bbedde 100644 --- a/docs/contributing/behind-the-code.md +++ b/docs/contributing/behind-the-code.md @@ -143,7 +143,7 @@ With this design concept, we have the following data structure: ```ts import { Workspace as Store } from '@blocksuite/store'; -interface Prpvider { +interface Provider { type: 'local-indexeddb' | 'affine-cloud' | 'desktop-sqlite'; background: boolean; // if the provider is background, we will load the data in the background necessary: boolean; // if the provider is necessary, we will block the UI rendering until this provider is ready