diff options
| author | 2024-02-05 20:46:33 +0000 | |
|---|---|---|
| committer | 2024-02-05 20:46:33 +0000 | |
| commit | f40ac1bf815f246054a9f9e08be9c5ef3e2f397e (patch) | |
| tree | 311b0077477731342111471219f2d63e27fc2cc1 | |
| parent | c041995b0ced6e2e2b799d35cc50f737cbee4f48 (diff) | |
| parent | dd4f1b0ef44ea959591e502d5d14dc72ce872e19 (diff) | |
Merge "[sqlite] Fix docs typo" into main
| -rw-r--r-- | core/java/android/database/sqlite/SQLiteDatabase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/database/sqlite/SQLiteDatabase.java b/core/java/android/database/sqlite/SQLiteDatabase.java index 35ae3c9e23c7..5dfeac7fca9b 100644 --- a/core/java/android/database/sqlite/SQLiteDatabase.java +++ b/core/java/android/database/sqlite/SQLiteDatabase.java @@ -693,7 +693,7 @@ public final class SQLiteDatabase extends SQLiteClosable { * Begins a transaction in DEFERRED mode, with the android-specific constraint that the * transaction is read-only. The database may not be modified inside a read-only transaction. * <p> - * Read-only transactions may run concurrently with other read-only transactions, and if they + * Read-only transactions may run concurrently with other read-only transactions, and if the * database is in WAL mode, they may also run concurrently with IMMEDIATE or EXCLUSIVE * transactions. * <p> |