Fix non-autolinks warnings

This commit is contained in:
gwenn 2020-11-07 12:32:41 +01:00
parent 9ae66e363e
commit 0649df96ea
5 changed files with 7 additions and 7 deletions

View File

@ -167,7 +167,7 @@ impl Context<'_> {
/// parameter. This is intended to be an easier-to-use way of fetching it
/// compared to calling `get_aux` and `set_aux` separately.
///
/// See https://www.sqlite.org/c3ref/get_auxdata.html for a discussion of
/// See `https://www.sqlite.org/c3ref/get_auxdata.html` for a discussion of
/// this feature, or the unit tests of this module for an example.
pub fn get_or_create_aux<T, E, F>(&self, arg: c_int, func: F) -> Result<Arc<T>>
where
@ -187,7 +187,7 @@ impl Context<'_> {
}
/// Sets the auxilliary data associated with a particular parameter. See
/// https://www.sqlite.org/c3ref/get_auxdata.html for a discussion of
/// `https://www.sqlite.org/c3ref/get_auxdata.html` for a discussion of
/// this feature, or the unit tests of this module for an example.
pub fn set_aux<T: Send + Sync + 'static>(&self, arg: c_int, value: T) -> Result<Arc<T>> {
let orig: Arc<T> = Arc::new(value);
@ -380,7 +380,7 @@ impl Connection {
/// `feature = "window"` Attach a user-defined aggregate window function to
/// this database connection.
///
/// See https://sqlite.org/windowfunctions.html#udfwinfunc for more
/// See `https://sqlite.org/windowfunctions.html#udfwinfunc` for more
/// information.
#[cfg(feature = "window")]
#[inline]

View File

@ -908,7 +908,7 @@ impl Statement<'_> {
/// Prepared statement status counters.
///
/// See https://www.sqlite.org/c3ref/c_stmtstatus_counter.html
/// See `https://www.sqlite.org/c3ref/c_stmtstatus_counter.html`
/// for explanations of each.
///
/// Note that depending on your version of SQLite, all of these

View File

@ -4,7 +4,7 @@
//! define.
//!
//! Port of [carray](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/carray.c)
//! C extension: https://www.sqlite.org/carray.html
//! C extension: `https://www.sqlite.org/carray.html`
//!
//! # Example
//!

View File

@ -1,7 +1,7 @@
//! `feature = "csvtab"` CSV Virtual Table.
//!
//! Port of [csv](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/csv.c) C
//! extension: https://www.sqlite.org/csv.html
//! extension: `https://www.sqlite.org/csv.html`
//!
//! # Example
//!

View File

@ -2,7 +2,7 @@
//!
//! Port of C [generate series
//! "function"](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/series.c):
//! https://www.sqlite.org/series.html
//! `https://www.sqlite.org/series.html`
use std::default::Default;
use std::marker::PhantomData;
use std::os::raw::c_int;