Skip to content

Commit f9aa8f2

Browse files
committed
Update DenoJS implementation
1 parent e951c6e commit f9aa8f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/neo4j-driver-deno/lib/core/bookmark-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export interface BookmarkManagerConfig {
6767
*
6868
* @since 5.0
6969
* @experimental
70-
* @property {Iterable<string>} [initialBookmarks@experimental] Defines the initial set of bookmarks. The key is the database name and the values are the bookmarks.
70+
* @property {Iterable<string>} [initialBookmarks] Defines the initial set of bookmarks. The key is the database name and the values are the bookmarks.
7171
* @property {function():Promise<Iterable<string>>} [bookmarksSupplier] Called for supplying extra bookmarks to the BookmarkManager
7272
* @property {function(bookmarks: Iterable<string>): Promise<void>} [bookmarksConsumer] Called when the set of bookmarks get updated
7373
*/

packages/neo4j-driver-deno/lib/core/driver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class SessionConfig {
159159
* Enabling it is done by supplying an BookmarkManager implementation instance to this param.
160160
* A default implementation could be acquired by calling the factory function {@link bookmarkManager}.
161161
*
162-
* **Warning**: Share the same BookmarkManager instance across all session can have a negative impact
162+
* **Warning**: Sharing the same BookmarkManager instance across multiple sessions can have a negative impact
163163
* on performance since all the queries will wait for the latest changes being propagated across the cluster.
164164
* For keeping consistency between a group of queries, use {@link Session} for grouping them.
165165
* For keeping consistency between a group of sessions, use {@link BookmarkManager} instance for grouping them.

0 commit comments

Comments
 (0)