Skip to content

Commit 9b90d07

Browse files
committed
Update README.md
1 parent 15b9457 commit 9b90d07

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

conn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func Open(filename string) (*Conn, error) {
4949
}
5050

5151
// OpenContext is like [Open] but includes a context,
52-
// which is used to interrupt the process of opening the connectiton.
52+
// which is used to interrupt the process of opening the connection.
5353
func OpenContext(ctx context.Context, filename string) (*Conn, error) {
5454
return newConn(ctx, filename, OPEN_READWRITE|OPEN_CREATE|OPEN_URI)
5555
}

vfs/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ The VFS can be customized with a few build tags:
107107
> [`unix-flock` VFS](https://sqlite.org/compile.html#enable_locking_style);
108108
> `sqlite3_dotlk` builds are compatible with the
109109
> [`unix-dotfile` VFS](https://sqlite.org/compile.html#enable_locking_style).
110-
> Accessing databases concurrently using incompatible implementations
110+
111+
> [!CAUTION]
112+
> Concurrently accessing databases using incompatible VFSes
111113
> will eventually corrupt data.
112114
113115
### Custom VFSes

0 commit comments

Comments
 (0)