From 9b90d076cbb26a6a64aca375748a9f346ad7f010 Mon Sep 17 00:00:00 2001 From: Nuno Cruces Date: Tue, 11 Mar 2025 21:47:06 +0000 Subject: [PATCH] Update README.md --- conn.go | 2 +- vfs/README.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/conn.go b/conn.go index 8814d5a..044795c 100644 --- a/conn.go +++ b/conn.go @@ -49,7 +49,7 @@ func Open(filename string) (*Conn, error) { } // OpenContext is like [Open] but includes a context, -// which is used to interrupt the process of opening the connectiton. +// which is used to interrupt the process of opening the connection. func OpenContext(ctx context.Context, filename string) (*Conn, error) { return newConn(ctx, filename, OPEN_READWRITE|OPEN_CREATE|OPEN_URI) } diff --git a/vfs/README.md b/vfs/README.md index 0ceb0ec..17c24ec 100644 --- a/vfs/README.md +++ b/vfs/README.md @@ -107,7 +107,9 @@ The VFS can be customized with a few build tags: > [`unix-flock` VFS](https://sqlite.org/compile.html#enable_locking_style); > `sqlite3_dotlk` builds are compatible with the > [`unix-dotfile` VFS](https://sqlite.org/compile.html#enable_locking_style). -> Accessing databases concurrently using incompatible implementations + +> [!CAUTION] +> Concurrently accessing databases using incompatible VFSes > will eventually corrupt data. ### Custom VFSes