Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
GromNaN committed Jun 21, 2024
1 parent b0cdfac commit 62d73b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/en/tutorials/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ Here is how you would use your models now:
// create blog post
$post = new BlogPost(
title: 'My First Blog Post',
body: 'MongoDB + Doctrine 2 ODM = awesomeness!',
body: 'MongoDB + Doctrine ODM = awesomeness!',
);
// link the blog post to the user
Expand All @@ -240,7 +240,7 @@ to inspect the contents of your database, where you will see this documents:
{
_id: ObjectId("4bec5869fdc212081d000000"),
title: "My First Blog Post",
body: "MongoDB + Doctrine 2 ODM = awesomeness!",
body: "MongoDB + Doctrine ODM = awesomeness!",
createdAt: Date("2010-05-13T18:00:00Z")
}

Expand Down

0 comments on commit 62d73b6

Please sign in to comment.