Skip to content

Commit d070233

Browse files
bigmontzfbiville
andauthored
Apply suggestions from code review
Co-authored-by: Florent Biville <445792+fbiville@users.noreply.github.com>
1 parent 7bad38d commit d070233

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/core/src/driver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ class Driver {
410410
* { routing: neo4j.routing.READERS})
411411
*
412412
* @example
413-
* // Run a read query return a Person Node
413+
* // Run a read query returning a Person Node
414414
* const person1 = await driver.executeQuery(
415415
* 'MATCH (p:Person{ name: $name }) RETURN p',
416416
* { name: 'Person1'},

packages/core/src/result-transformers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class ResultTransformers {
5959
* const { keys, records, summary } = await driver.executeQuery('CREATE (p:Person{ name: $name }) RETURN p', { name: 'Person1'}, {
6060
* resultTransformer: neo4j.resultTransformers.eagerResultTransformer()
6161
* })
62-
* // equivalent to:
62+
* // is equivalent to:
6363
* const { keys, records, summary } = await driver.executeQuery('CREATE (p:Person{ name: $name }) RETURN p', { name: 'Person1'})
6464
*
6565
*

0 commit comments

Comments
 (0)