Skip to content

Commit b858feb

Browse files
Apply fixes from @ryneeverett
Co-authored-by: ryneeverett <ryneeverett@gmail.com>
1 parent 25911b4 commit b858feb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqlite/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! This crate is intended for small deployments of a sync server, supporting one or a small number
66
//! of users. The schema for the database is considered an implementation detail. For more robust
7-
//! database support, consider `taskchmpaion-sync-server-storage-posrgres`.
7+
//! database support, consider `taskchampion-sync-server-storage-postgres`.
88
99
use anyhow::Context;
1010
use chrono::{TimeZone, Utc};
@@ -276,7 +276,7 @@ impl StorageTxn for Txn {
276276
SET
277277
latest_version_id = ?,
278278
versions_since_snapshot = versions_since_snapshot + 1
279-
WHERE client_id = ? and latest_Version_id = ?",
279+
WHERE client_id = ? and latest_version_id = ?",
280280
params![
281281
StoredUuid(version_id),
282282
StoredUuid(self.client_id),

0 commit comments

Comments
 (0)