mirror of
https://github.com/teloxide/teloxide.git
synced 2025-03-14 11:44:04 +01:00
Fix typo
This commit is contained in:
parent
e751624d6f
commit
fb996d943d
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ impl<S> SqliteStorage<S> {
|
|||
serializer: S,
|
||||
) -> Result<Arc<Self>, SqliteStorageError<Infallible>> {
|
||||
let mut conn =
|
||||
SqliteConnectOptions::new().filename(path).create_if_missing(true).c§onnect().await?;
|
||||
SqliteConnectOptions::new().filename(path).create_if_missing(true).connect().await?;
|
||||
|
||||
// TODO: think about a schema migration mechanism.
|
||||
conn.execute(
|
||||
|
|
Loading…
Add table
Reference in a new issue