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

@@ -105,7 +105,7 @@ impl Drop for Rows<'_> {
}
}
/// `F` is used to tranform the _streaming_ iterator into a _fallible_ iterator.
/// `F` is used to transform the _streaming_ iterator into a _fallible_ iterator.
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct Map<'stmt, F> {
rows: Rows<'stmt>,
@@ -130,7 +130,7 @@ where
/// An iterator over the mapped resulting rows of a query.
///
/// `F` is used to tranform the _streaming_ iterator into a _standard_ iterator.
/// `F` is used to transform the _streaming_ iterator into a _standard_ iterator.
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct MappedRows<'stmt, F> {
rows: Rows<'stmt>,