From e5f085e4219f05fe80c10202433eb59c8bba5a2c Mon Sep 17 00:00:00 2001 From: Healing Drawing <39751647+healingdrawing@users.noreply.github.com> Date: Wed, 5 Jun 2024 21:57:34 +0300 Subject: [PATCH] Typo (#481) --- deploy/kv/manual/index.mdx | 2 +- deploy/manual/firebase.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/kv/manual/index.mdx b/deploy/kv/manual/index.mdx index 569094ad5..40a271f6d 100644 --- a/deploy/kv/manual/index.mdx +++ b/deploy/kv/manual/index.mdx @@ -271,7 +271,7 @@ Deno.test("Preferences", async (t) => { }); ``` -This works becaus Deno KV is backed by SQLite when run for local development. Just like +This works because Deno KV is backed by SQLite when run for local development. Just like in-memory SQLite databases, multiple ephemeral Deno KV stores can exist at once without interfering with one another. For more information about special database addressing modes, see [the SQLite docs on the topic](https://www.sqlite.org/inmemorydb.html). diff --git a/deploy/manual/firebase.md b/deploy/manual/firebase.md index da7563a17..699aac0e5 100644 --- a/deploy/manual/firebase.md +++ b/deploy/manual/firebase.md @@ -2,7 +2,7 @@ Firebase is a platform developed by Google for creating mobile and web applications. Its features include authentication primitives for log in and a -NoSQL datasore, Firestore, that you can persist data to. +NoSQL datastore, Firestore, that you can persist data to. This tutorial covers how to connect to Firebase from an application deployed on Deno Deploy.