From 3196989f0d1308a27321712e8c624139c4caad80 Mon Sep 17 00:00:00 2001 From: Thom Chiovoloni Date: Mon, 6 Apr 2020 11:04:45 -0700 Subject: [PATCH] Clarify that the submodules of `rusqlite::vtab` are ports (#672) --- src/vtab/array.rs | 5 +++-- src/vtab/csvtab.rs | 5 +++-- src/vtab/series.rs | 6 ++++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/src/vtab/array.rs b/src/vtab/array.rs index dcbe88c..38efe96 100644 --- a/src/vtab/array.rs +++ b/src/vtab/array.rs @@ -1,9 +1,10 @@ -//! `feature = "array"` Array Virtual Table: https://www.sqlite.org/carray.html +//! `feature = "array"` Array Virtual Table. //! //! Note: `rarray`, not `carray` is the name of the table valued function we //! define. //! -//! Port of [carray](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/carray.c) C extension. +//! Port of [carray](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/carray.c) +//! C extension: https://www.sqlite.org/carray.html //! //! # Example //! diff --git a/src/vtab/csvtab.rs b/src/vtab/csvtab.rs index 7e2441d..e7179d3 100644 --- a/src/vtab/csvtab.rs +++ b/src/vtab/csvtab.rs @@ -1,6 +1,7 @@ -//! `feature = "csvtab"` CSV Virtual Table: https://www.sqlite.org/csv.html +//! `feature = "csvtab"` CSV Virtual Table. //! -//! Port of [csv](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/csv.c) C extension. +//! Port of [csv](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/csv.c) C +//! extension: https://www.sqlite.org/csv.html //! //! # Example //! diff --git a/src/vtab/series.rs b/src/vtab/series.rs index c4117ca..46eb28f 100644 --- a/src/vtab/series.rs +++ b/src/vtab/series.rs @@ -1,6 +1,8 @@ -//! `feature = "series"` Generate series virtual table: https://www.sqlite.org/series.html +//! `feature = "series"` Generate series virtual table. //! -//! Port of C [generate series "function"](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/series.c). +//! Port of C [generate series +//! "function"](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/series.c): +//! https://www.sqlite.org/series.html use std::default::Default; use std::os::raw::c_int;