Skip to content

Commit c848a9a

Browse files
committed
Fix typo
1 parent d591470 commit c848a9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1816,7 +1816,7 @@ impl<'a> Row<'a> {
18161816
///
18171817
/// ## Panics
18181818
///
1819-
/// Panics if the index does not references a column.
1819+
/// Panics if the index does not reference a column.
18201820
pub fn get_bytes<I>(&self, idx: I) -> Option<&[u8]> where I: RowIndex + fmt::Debug {
18211821
match idx.idx(self.stmt) {
18221822
Some(idx) => self.data[idx].as_ref().map(|e| &**e),

0 commit comments

Comments
 (0)