Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sources/Basics/SQLite.swift
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public struct SQLite {

/// Represents a row returned by called step() on a prepared statement.
public struct Row {
/// The pointer to the prepared statment.
/// The pointer to the prepared statement.
let stmt: OpaquePointer

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

/// The pointer to the prepared statment.
/// The pointer to the prepared statement.
let stmt: OpaquePointer

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