diff options
author | Teddy Wing | 2022-03-23 00:14:31 +0100 |
---|---|---|
committer | Teddy Wing | 2022-03-23 00:14:31 +0100 |
commit | 0388e18a5338e646df2a073c310e0ba955dcfdcc (patch) | |
tree | 322f60f6b6681e62b152f1831871081c854a3fd6 | |
parent | 24445707342d22e4df5a1f6ec8aecc786244fbc4 (diff) | |
download | yaqlite-0388e18a5338e646df2a073c310e0ba955dcfdcc.tar.bz2 |
lib: Add documentation for `Error` type
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ pub use insert::*; pub use select::*; -/// TODO +/// Yaqlite errors. #[derive(thiserror::Error, Debug)] pub enum Error { #[error("SQL error: {0}")] |