Skip to content

Commit 528210f

Browse files
committed
Update DenoJS implementation
1 parent c6e5098 commit 528210f

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
@@ -194,7 +194,7 @@ class SessionConfig {
194194
* Enabling it is done by supplying an BookmarkManager implementation instance to this param.
195195
* A default implementation could be acquired by calling the factory function {@link bookmarkManager}.
196196
*
197-
* **Warning**: Share the same BookmarkManager instance across all session can have a negative impact
197+
* **Warning**: Sharing the same BookmarkManager instance across multiple sessions can have a negative impact
198198
* on performance since all the queries will wait for the latest changes being propagated across the cluster.
199199
* For keeping consistency between a group of queries, use {@link Session} for grouping them.
200200
* For keeping consistency between a group of sessions, use {@link BookmarkManager} instance for grouping them.

0 commit comments

Comments
 (0)