Skip to content

Commit 11e9036

Browse files
committed
statement_iterator.rs
1 parent 5bc8be5 commit 11e9036

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/connection/statement_iterator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ impl<'stmt, 'query> Iterator for StatementIterator<'stmt, 'query> {
111111
// by checking if our Rc owns the data or not
112112
if let Some(last_row_ref) = Rc::get_mut(last_row) {
113113
// We own the statement, there is no other reference here.
114-
// This means we don't need to copy out values from the sqlite provided
115-
// datastructures for now
114+
// This means we don't need to copy out values from the SQLite-provided
115+
// data structures for now
116116
// We don't need to use the runtime borrowing system of the RefCell here
117117
// as we have a mutable reference, so all of this below is checked at compile time
118118
if let PrivateSqliteRow::Direct(ref mut stmt) = last_row_ref.get_mut() {

0 commit comments

Comments
 (0)