From 874d21dd7dcfd37c1b31db0fb2620031eff5a1ca Mon Sep 17 00:00:00 2001 From: Scott Cook Date: Thu, 7 Dec 2023 20:00:54 -0800 Subject: [PATCH] Update typo in querying.mdx --- docs/database/querying.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/database/querying.mdx b/docs/database/querying.mdx index d5443163..d8092eab 100644 --- a/docs/database/querying.mdx +++ b/docs/database/querying.mdx @@ -11,7 +11,7 @@ to get the best results from the library. ## Providing a database reference To query data in your realtime database, you first need to create a [`DatabaseReference`](https://firebase.google.com/docs/reference/js/database.databasereference), -which acts are the pointer for the location of the data you wish to query. The refernce is created from the +which acts are the pointer for the location of the data you wish to query. The reference is created from the `firebase/database` library. For example, to create a reference pointing at the `products` node: ```js