From 7789ee0bd35e6d9a349f8cf2bdfe6f230de48925 Mon Sep 17 00:00:00 2001 From: Kevin Kim Date: Thu, 24 Oct 2024 16:01:37 -0400 Subject: [PATCH] fix query description --- src/query.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/query.ts b/src/query.ts index 8c821e53a..437a6e1f7 100644 --- a/src/query.ts +++ b/src/query.ts @@ -53,10 +53,10 @@ export interface Filter { } /** - * Build a Query object. + * A Query object is used to build and execute queries for entities stored in Datastore. * - * **Queries are built with {module:datastore#createQuery} and - * {@link Transaction#createQuery}.** + * Create a Query object with {@link Datastore#createQuery} or + * {@link Transaction#createQuery}. * * @see {@link http://goo.gl/Cag0r6| Datastore Queries} *