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) {
49
49
}
50
50
51
51
// 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 .
53
53
func OpenContext (ctx context.Context , filename string ) (* Conn , error ) {
54
54
return newConn (ctx , filename , OPEN_READWRITE | OPEN_CREATE | OPEN_URI )
55
55
}
Original file line number Diff line number Diff line change @@ -107,7 +107,9 @@ The VFS can be customized with a few build tags:
107
107
> [ ` unix-flock ` VFS] ( https://sqlite.org/compile.html#enable_locking_style ) ;
108
108
> ` sqlite3_dotlk ` builds are compatible with the
109
109
> [ ` 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
111
113
> will eventually corrupt data.
112
114
113
115
### Custom VFSes
You can’t perform that action at this time.
0 commit comments