From 519ef9dc841f2dd04901d0776dc9c7d39acd942f Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 2 Feb 2019 15:18:11 +0100 Subject: [PATCH] Fix rustdoc warnings --- src/row.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/row.rs b/src/row.rs index fca2509..4a2dd87 100644 --- a/src/row.rs +++ b/src/row.rs @@ -139,11 +139,11 @@ impl<'a, 'stmt> Row<'a, 'stmt> { /// Panics if calling `row.get_checked(idx)` would return an error, /// including: /// - /// * If the underlying SQLite column type is not a valid type as a - /// source for `T` - /// * If the underlying SQLite integral value is outside the range - /// representable by `T` - /// * If `idx` is outside the range of columns in the returned query + /// * If the underlying SQLite column type is not a valid type as a + /// source for `T` + /// * If the underlying SQLite integral value is outside the range + /// representable by `T` + /// * If `idx` is outside the range of columns in the returned query pub fn get(&self, idx: I) -> T { self.get_checked(idx).unwrap() } @@ -215,8 +215,8 @@ impl<'a, 'stmt> Row<'a, 'stmt> { /// Panics if calling `row.get_raw_checked(idx)` would return an error, /// including: /// - /// * If `idx` is outside the range of columns in the returned query. - /// * If `idx` is not a valid column name for this row. + /// * If `idx` is outside the range of columns in the returned query. + /// * If `idx` is not a valid column name for this row. pub fn get_raw(&self, idx: I) -> ValueRef<'a> { self.get_raw_checked(idx).unwrap() }