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