File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff 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 .
5353func OpenContext (ctx context.Context , filename string ) (* Conn , error ) {
5454 return newConn (ctx , filename , OPEN_READWRITE | OPEN_CREATE | OPEN_URI )
5555}
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments