From d7e5c5c8e0859b857dc76e2f1ac20d4d125f7d96 Mon Sep 17 00:00:00 2001 From: Marius Butuc Date: Fri, 20 Sep 2024 16:59:13 -0400 Subject: [PATCH] [typo] Update reference.adoc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix typo _resolvers to_ ยป _resolves to_. --- modules/ROOT/pages/ogm/reference.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/ogm/reference.adoc b/modules/ROOT/pages/ogm/reference.adoc index 7a11135c..4a2bd2e2 100644 --- a/modules/ROOT/pages/ogm/reference.adoc +++ b/modules/ROOT/pages/ogm/reference.adoc @@ -287,7 +287,7 @@ await Movie.create({ input: [{ title: "The Matrix" }] }) === `delete` This method can be used to delete nodes, and maps to the underlying xref::mutations/delete.adoc[Delete] Mutation. -It returns a `Promise` which resolvers to a `DeleteInfo` object: +It returns a `Promise` which resolves to a `DeleteInfo` object: [cols="1,1,1"] |=== @@ -340,7 +340,7 @@ await User.delete({ where: { name: "Dan" }}); === `find` This method can be used to find nodes, and maps to the underlying schema xref::queries-aggregations/queries.adoc[Queries]. -It returns a `Promise` which resolvers to an array of objects matching the type of the Model. +It returns a `Promise` which resolves to an array of objects matching the type of the Model. ==== Arguments