Correct precedence in description of MongoDB properties

Closes gh-35686
This commit is contained in:
Scott Frederick
2023-05-31 17:09:45 -05:00
parent 812a48e877
commit c847db77e6

View File

@@ -59,12 +59,12 @@ public class MongoProperties {
private Integer port = null; private Integer port = null;
/** /**
* Mongo database URI. Overrides host, port, username, password, and database. * Mongo database URI. Overrides host, port, username, and password.
*/ */
private String uri; private String uri;
/** /**
* Database name. * Database name. Overrides database in URI.
*/ */
private String database; private String database;