diff --git a/entity-framework/core/modeling/relationships.md b/entity-framework/core/modeling/relationships.md index 289e57f0e2..2c926a8eb8 100644 --- a/entity-framework/core/modeling/relationships.md +++ b/entity-framework/core/modeling/relationships.md @@ -62,7 +62,7 @@ public class Blog This connection from `Blog` to `Post` and, inversely, from `Post` back to `Blog` is known as a "relationship" in EF Core. > [!IMPORTANT] -> A **single** relationship can typically traversed in either direction. In this example, that is from `Blog` to `Post` via the `Blog.Posts` property, and from `Post` back to `Blog` via the `Post.Blog` property. This is **one** relationship, not two. +> A **single** relationship can typically be traversed in either direction. In this example, that is from `Blog` to `Post` via the `Blog.Posts` property, and from `Post` back to `Blog` via the `Post.Blog` property. This is **one** relationship, not two. > [!TIP] > In EF Core, the `Blog.Posts` and `Post.Blog` properties are called "navigations".