fix several typos

This commit is contained in:
Dirk Stolle
2021-05-02 13:46:04 +02:00
committed by Thom Chiovoloni
parent b8b1138fcf
commit c33d6bfad3
11 changed files with 20 additions and 20 deletions

View File

@@ -247,7 +247,7 @@ impl Statement<'_> {
/// Executes the prepared statement and maps a function over the resulting
/// rows, returning an iterator over the mapped function results.
///
/// `f` is used to tranform the _streaming_ iterator into a _standard_
/// `f` is used to transform the _streaming_ iterator into a _standard_
/// iterator.
///
/// This is equivalent to `stmt.query(params)?.mapped(f)`.
@@ -310,7 +310,7 @@ impl Statement<'_> {
/// most-recently bound value from a previous call to `query_named`,
/// or `NULL` if they have never been bound.
///
/// `f` is used to tranform the _streaming_ iterator into a _standard_
/// `f` is used to transform the _streaming_ iterator into a _standard_
/// iterator.
///
/// ## Failure