Skip to content
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(generated): use text extensions in README instead of txt #603

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ public class CreateDbAndDoc {

When you run the code, you see a result similar to the following output.

```txt
```text
"orders" database created.
You have created the document:
{
Expand Down Expand Up @@ -489,7 +489,7 @@ public class GetInfoFromExistingDatabase {
</details>
When you run the code, you see a result similar to the following output.

```txt
```text
Server Version: 2.1.1
Document count in "orders" database is 1.
Document retrieved from database:
Expand Down Expand Up @@ -619,7 +619,7 @@ public class UpdateDoc {
</details>
When you run the code, you see a result similar to the following output.

```txt
```text
You have updated the document:
{
"_id": "example",
Expand Down Expand Up @@ -697,7 +697,7 @@ public class DeleteDoc {
</details>
When you run the code, you see the following output.

```txt
```text
You have deleted the document.
```

Expand Down