From 6b8eb9f2031825a0a5da2e96941b35c416b1bb8d Mon Sep 17 00:00:00 2001 From: dharmatech Date: Mon, 10 May 2021 12:30:43 -0700 Subject: [PATCH] Fix capitalization (#22252) --- aspnetcore/data/ef-rp/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/data/ef-rp/intro.md b/aspnetcore/data/ef-rp/intro.md index 20d05eff4c..cac5f1a30d 100644 --- a/aspnetcore/data/ef-rp/intro.md +++ b/aspnetcore/data/ef-rp/intro.md @@ -333,7 +333,7 @@ The highlighted code: * An entity corresponds to a row in the table. * Calls . `OnModelCreating`: * Is called when `SchoolContext` has been initialized, but before the model has been locked down and used to initialize the context. - * Is required because later in the tutorial The `Student` entity will have references to the other entities. + * Is required because later in the tutorial the `Student` entity will have references to the other entities. Build the project to verify there are no compiler errors.