From 94db71082b2dd1daf3bebc180baac91fd766c001 Mon Sep 17 00:00:00 2001 From: GitHubPang <61439577+GitHubPang@users.noreply.github.com> Date: Fri, 22 Jul 2022 08:13:26 +0800 Subject: [PATCH] Fix grammar typo in XML doc --- src/Microsoft.Data.Sqlite.Core/SqliteConnectionStringBuilder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Data.Sqlite.Core/SqliteConnectionStringBuilder.cs b/src/Microsoft.Data.Sqlite.Core/SqliteConnectionStringBuilder.cs index ed5c19838eb..75e8f0fd34c 100644 --- a/src/Microsoft.Data.Sqlite.Core/SqliteConnectionStringBuilder.cs +++ b/src/Microsoft.Data.Sqlite.Core/SqliteConnectionStringBuilder.cs @@ -175,7 +175,7 @@ public string Password /// /// Gets or sets a value indicating whether to enable foreign key constraints. When true, /// PRAGMA foreign_keys = 1 is sent immediately after opening the connection. When false, - /// PRAGMA foreign_keys = 0 is sent. When null, no pragma is sent. There is no need enable foreign + /// PRAGMA foreign_keys = 0 is sent. When null, no pragma is sent. There is no need to enable foreign /// keys if, like in e_sqlite3, SQLITE_DEFAULT_FOREIGN_KEYS was used to compile the native library. /// /// A value indicating whether to enable foreign key constraints.