From 9b4616bdbbfe889d082f45a9a9b833c3436a045e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Sch=C3=A4fer?= Date: Fri, 20 Dec 2024 12:32:57 +0100 Subject: [PATCH] Docs: Fix typo (#2203) --- website/docs/guides/writes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/guides/writes.md b/website/docs/guides/writes.md index bb707e8b9c..7a03c70244 100644 --- a/website/docs/guides/writes.md +++ b/website/docs/guides/writes.md @@ -202,7 +202,7 @@ Through this, the implementation: - presents a single table interface for reads and writes - auto-syncs the local writes to the server -The application code code in [`index.tsx`](https://github.com/electric-sql/electric/blog/main/examples/write-patterns/patterns/4-through-the-db/index.tsx) stays very simple. Most of the complexity is abstracted into the local database schema, defined in [`local-schema.sql`](https://github.com/electric-sql/electric/blog/main/examples/write-patterns/patterns/4-through-the-db/local-schema.sql). The write-path sync utility in [`sync.ts`](https://github.com/electric-sql/electric/blog/main/examples/write-patterns/patterns/4-through-the-db/local-schema.sql) handles sending data to the server. +The application code in [`index.tsx`](https://github.com/electric-sql/electric/blog/main/examples/write-patterns/patterns/4-through-the-db/index.tsx) stays very simple. Most of the complexity is abstracted into the local database schema, defined in [`local-schema.sql`](https://github.com/electric-sql/electric/blog/main/examples/write-patterns/patterns/4-through-the-db/local-schema.sql). The write-path sync utility in [`sync.ts`](https://github.com/electric-sql/electric/blog/main/examples/write-patterns/patterns/4-through-the-db/local-schema.sql) handles sending data to the server. These are shown in the three tabs below: