Skip to content

Commit cb606c3

Browse files
committed
Docs fixes
Signed-off-by: itowlson <[email protected]>
1 parent 44350d6 commit cb606c3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ mod test;
99
pub mod key_value;
1010

1111
/// SQLite storage for Spin 2 and earlier. Applications that do not require
12-
/// this backward compatibility should use the [`sqlite3`](crate::sqlite3) module instead.
12+
/// this backward compatibility should use the [`sqlite3`] module instead.
1313
pub mod sqlite;
1414
/// SQLite storage.
1515
pub mod sqlite3;

src/pg4.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
//! | `chrono::Duration` | timestamp(s64) | BIGINT |
2828
//! | `uuid::Uuid` | uuid(string) | UUID |
2929
//! | `serde_json::Value` | jsonb(list\<u8\>) | JSONB |
30-
//! | `serde::De/Serialize | jsonb(list\<u8\>) | JSONB |
30+
//! | `serde::De/Serialize` | jsonb(list\<u8\>) | JSONB |
3131
//! | `rust_decimal::Decimal` | decimal(string) | NUMERIC |
3232
//! | `postgres_range` | range-int32(...), range-int64(...) | INT4RANGE, INT8RANGE |
3333
//! | lower/upper tuple | range-decimal(...) | NUMERICRANGE |
3434
//! | `Vec<Option<...>>` | array-int32(...), array-int64(...), array-str(...), array-decimal(...) | INT4[], INT8[], TEXT[], NUMERIC[] |
35-
//! | `pg4::Interval | interval(interval) | INTERVAL |
35+
//! | `pg4::Interval` | interval(interval) | INTERVAL |
3636
3737
/// An open connection to a PostgreSQL database.
3838
///

0 commit comments

Comments
 (0)