-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docs: Correct sentence in Using the MongoDB Client #45387
Conversation
docs/src/main/asciidoc/mongodb.adoc
Outdated
@@ -217,7 +217,7 @@ public class FruitResource { | |||
The implementation is pretty straightforward, and you just need to define your endpoints using the Jakarta REST annotations and use the `FruitService` to list/add new fruits. | |||
|
|||
== Configuring the MongoDB database | |||
The main property to configure is the URL to access to MongoDB. Almost all configuration can be included in the connection URI, so we advise you to do so. You can find more information in the MongoDB documentation: https://docs.mongodb.com/manual/reference/connection-string/ | |||
The main property to configure is the URL to access the MongoDB. Almost all configuration can be included in the connection URI, so we advise you to do so. You can find more information in the MongoDB documentation: https://docs.mongodb.com/manual/reference/connection-string/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I think it would be better with:
The main property to configure is the URL to access the MongoDB. Almost all configuration can be included in the connection URI, so we advise you to do so. You can find more information in the MongoDB documentation: https://docs.mongodb.com/manual/reference/connection-string/ | |
The main property to configure is the URL to access MongoDB. Almost all configuration can be included in the connection URI, so we advise you to do so. You can find more information in the MongoDB documentation: https://docs.mongodb.com/manual/reference/connection-string/ |
(or the MongoDB server
or the MongoDB instance
)
Could you adjust and squash?
Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure, done :)
Signed-off-by: Maciej Lisowski <[email protected]>
9ad30a8
to
a200a47
Compare
This comment has been minimized.
This comment has been minimized.
🙈 The PR is closed and the preview is expired. |
Status for workflow
|
Perfect, thanks! |
While reading the docs I stumbled across weird sentence in Using the MongoDB Client.
This PR is simply changing this weird sentence.