Skip to content
Open
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
6 changes: 3 additions & 3 deletions src/statement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl<'conn, 'sql> StatementBuilder<'conn, 'sql> {
/// more memory. The preferable value depends on the query and
/// the environment.
///
/// If the query returns only onw row, it is better to change
/// If the query returns only one row, it is better to change
/// size to one.
///
/// ```
Expand Down Expand Up @@ -714,7 +714,7 @@ impl Statement {
}

/// Binds values by position and executes the statement.
/// It will retunrs `Err` when the statemnet is a select statement.
/// It will return `Err` when the statement is a select statement.
///
/// See also [`Connection::execute`].
///
Expand Down Expand Up @@ -744,7 +744,7 @@ impl Statement {
}

/// Binds values by name and executes the statement.
/// It will retunrs `Err` when the statemnet is a select statement.
/// It will return `Err` when the statement is a select statement.
///
/// See also [`Connection::execute_named`].
///
Expand Down