From 0649df96eabfb5790e74d01de6a61f7e1e4e4fac Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 7 Nov 2020 12:32:41 +0100 Subject: [PATCH] Fix non-autolinks warnings --- src/functions.rs | 6 +++--- src/statement.rs | 2 +- src/vtab/array.rs | 2 +- src/vtab/csvtab.rs | 2 +- src/vtab/series.rs | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/functions.rs b/src/functions.rs index 3add4bc..bc1de96 100644 --- a/src/functions.rs +++ b/src/functions.rs @@ -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(&self, arg: c_int, func: F) -> Result> 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(&self, arg: c_int, value: T) -> Result> { let orig: Arc = 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] diff --git a/src/statement.rs b/src/statement.rs index 83db05f..4591e85 100644 --- a/src/statement.rs +++ b/src/statement.rs @@ -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 diff --git a/src/vtab/array.rs b/src/vtab/array.rs index 012c54a..53b31a7 100644 --- a/src/vtab/array.rs +++ b/src/vtab/array.rs @@ -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 //! diff --git a/src/vtab/csvtab.rs b/src/vtab/csvtab.rs index 98fc4a9..c9878cd 100644 --- a/src/vtab/csvtab.rs +++ b/src/vtab/csvtab.rs @@ -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 //! diff --git a/src/vtab/series.rs b/src/vtab/series.rs index d745384..4ab39dd 100644 --- a/src/vtab/series.rs +++ b/src/vtab/series.rs @@ -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;