mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Fix the typename used in doc for VTab and VTabCursor
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
b17942125f
commit
0241cb0388
@ -198,7 +198,7 @@ impl VTabConnection {
|
|||||||
/// #[repr(C)]
|
/// #[repr(C)]
|
||||||
/// struct MyTab {
|
/// struct MyTab {
|
||||||
/// /// Base class. Must be first
|
/// /// Base class. Must be first
|
||||||
/// base: ffi::sqlite3_vtab,
|
/// base: rusqlite::vtab::sqlite3_vtab,
|
||||||
/// /* Virtual table implementations will typically add additional fields */
|
/// /* Virtual table implementations will typically add additional fields */
|
||||||
/// }
|
/// }
|
||||||
/// ```
|
/// ```
|
||||||
@ -488,7 +488,7 @@ impl OrderBy<'_> {
|
|||||||
/// #[repr(C)]
|
/// #[repr(C)]
|
||||||
/// struct MyTabCursor {
|
/// struct MyTabCursor {
|
||||||
/// /// Base class. Must be first
|
/// /// Base class. Must be first
|
||||||
/// base: ffi::sqlite3_vtab_cursor,
|
/// base: rusqlite::vtab::sqlite3_vtab_cursor,
|
||||||
/// /* Virtual table implementations will typically add additional fields */
|
/// /* Virtual table implementations will typically add additional fields */
|
||||||
/// }
|
/// }
|
||||||
/// ```
|
/// ```
|
||||||
|
Loading…
Reference in New Issue
Block a user