From 43c18cb6beba23bec87df3bff41a270248ce837a Mon Sep 17 00:00:00 2001 From: Arthur Vickers Date: Thu, 5 Jan 2023 21:02:33 +0000 Subject: [PATCH] Fix typo. --- .../Extensions/SqlServerDbContextOptionsBuilderExtensions.cs | 4 ++-- .../Extensions/SqliteDbContextOptionsBuilderExtensions.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/EFCore.SqlServer/Extensions/SqlServerDbContextOptionsBuilderExtensions.cs b/src/EFCore.SqlServer/Extensions/SqlServerDbContextOptionsBuilderExtensions.cs index 12414e7f8fb..6859203cfc4 100644 --- a/src/EFCore.SqlServer/Extensions/SqlServerDbContextOptionsBuilderExtensions.cs +++ b/src/EFCore.SqlServer/Extensions/SqlServerDbContextOptionsBuilderExtensions.cs @@ -89,7 +89,7 @@ public static DbContextOptionsBuilder UseSqlServer( /// An existing to be used to connect to the database. If the connection is /// in the open state then EF will not open or close the connection. If the connection is in the closed /// state then EF will open and close the connection as needed. The caller owns the connection and is - /// responsible for itd disposal. + /// responsible for its disposal. /// /// An optional action to allow additional SQL Server specific configuration. /// The options builder so that further configuration can be chained. @@ -201,7 +201,7 @@ public static DbContextOptionsBuilder UseSqlServer( /// An existing to be used to connect to the database. If the connection is /// in the open state then EF will not open or close the connection. If the connection is in the closed /// state then EF will open and close the connection as needed. The caller owns the connection and is - /// responsible for itd disposal. + /// responsible for its disposal. /// /// An optional action to allow additional SQL Server specific configuration. /// The options builder so that further configuration can be chained. diff --git a/src/EFCore.Sqlite.Core/Extensions/SqliteDbContextOptionsBuilderExtensions.cs b/src/EFCore.Sqlite.Core/Extensions/SqliteDbContextOptionsBuilderExtensions.cs index 008899fbc68..7e2f74180e3 100644 --- a/src/EFCore.Sqlite.Core/Extensions/SqliteDbContextOptionsBuilderExtensions.cs +++ b/src/EFCore.Sqlite.Core/Extensions/SqliteDbContextOptionsBuilderExtensions.cs @@ -84,7 +84,7 @@ public static DbContextOptionsBuilder UseSqlite( /// An existing to be used to connect to the database. If the connection is /// in the open state then EF will not open or close the connection. If the connection is in the closed /// state then EF will open and close the connection as needed. The caller owns the connection and is - /// responsible for itd disposal. + /// responsible for its disposal. /// /// An optional action to allow additional SQLite specific configuration. /// The options builder so that further configuration can be chained. @@ -190,7 +190,7 @@ public static DbContextOptionsBuilder UseSqlite( /// An existing to be used to connect to the database. If the connection is /// in the open state then EF will not open or close the connection. If the connection is in the closed /// state then EF will open and close the connection as needed. The caller owns the connection and is - /// responsible for itd disposal. + /// responsible for its disposal. /// /// An optional action to allow additional SQLite specific configuration. /// The options builder so that further configuration can be chained.