Skip to content

Commit 527a852

Browse files
authored
Basics: fix comment typo in SQLite.swift (#6212)
`statment` -> `statement`
1 parent 11b93c3 commit 527a852

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Basics/SQLite.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public struct SQLite {
167167

168168
/// Represents a row returned by called step() on a prepared statement.
169169
public struct Row {
170-
/// The pointer to the prepared statment.
170+
/// The pointer to the prepared statement.
171171
let stmt: OpaquePointer
172172

173173
/// Get integer at the given column index.
@@ -199,7 +199,7 @@ public struct SQLite {
199199
static let SQLITE_STATIC = unsafeBitCast(0, to: sqlite3_destructor_type.self)
200200
static let SQLITE_TRANSIENT = unsafeBitCast(-1, to: sqlite3_destructor_type.self)
201201

202-
/// The pointer to the prepared statment.
202+
/// The pointer to the prepared statement.
203203
let stmt: OpaquePointer
204204

205205
public init(db: OpaquePointer, query: String) throws {

0 commit comments

Comments
 (0)