diff --git a/Neo4j.Driver/Neo4j.Driver/Public/GraphDatabase.cs b/Neo4j.Driver/Neo4j.Driver/Public/GraphDatabase.cs
index 006d3c4e5..f567903c0 100644
--- a/Neo4j.Driver/Neo4j.Driver/Public/GraphDatabase.cs
+++ b/Neo4j.Driver/Neo4j.Driver/Public/GraphDatabase.cs
@@ -31,7 +31,7 @@ public static class GraphDatabase
///
public static IBookmarkManagerFactory BookmarkManagerFactory => new BookmarkManagerFactory();
- /// Returns a driver for a Neo4j instance with default configuration settings.
+ /// Returns a driver for a Neo4j instance with default configuration settings and disabled authentication.
///
/// The URI to the Neo4j instance. Should be in the form
/// protocol://<server location>:<port>. If port is not supplied the default of 7687 will
@@ -47,7 +47,7 @@ public static IDriver Driver(string uri)
return Driver(new Uri(uri));
}
- /// Returns a driver for a Neo4j instance with default configuration settings.
+ /// Returns a driver for a Neo4j instance with default configuration settings and disabled authentication.
///
/// The URI to the Neo4j instance. Should be in the form
/// protocol://<server location>:<port>. If port is not supplied the default of 7687 will
@@ -63,7 +63,7 @@ public static IDriver Driver(Uri uri)
return Driver(uri, (Action)null);
}
- /// Returns a driver for a Neo4j instance with custom configuration.
+ /// Returns a driver for a Neo4j instance with custom configuration and disabled authentication.
///
/// The URI to the Neo4j instance. Should be in the form
/// protocol://<server location>:<port>. If port is not supplied the default of 7687 will
@@ -84,7 +84,7 @@ public static IDriver Driver(string uri, Action action)
return Driver(new Uri(uri), action);
}
- /// Returns a driver for a Neo4j instance with custom configuration.
+ /// Returns a driver for a Neo4j instance with custom configuration and disabled authentication.
///
/// The URI to the Neo4j instance. Should be in the form
/// protocol://<server location>:<port>. If port is not supplied the default of 7687 will