Skip to content

Commit 2af8351

Browse files
committed
fmt fix
1 parent e1b656d commit 2af8351

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/client.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use crate::{
1919
/// The top-level struct of the SDK, representing a client containing [indexes](../indexes/struct.Index.html).
2020
#[derive(Debug, Clone)]
2121
pub struct Client<Http: HttpClient = DefaultHttpClient> {
22-
pub(crate) inner:std::sync::Arc<ClientInner<Http>>
22+
pub(crate) inner: std::sync::Arc<ClientInner<Http>>,
2323
}
2424

2525
#[derive(Debug)]
@@ -69,7 +69,7 @@ impl Client {
6969
host: host.into(),
7070
api_key,
7171
http_client,
72-
})
72+
}),
7373
})
7474
}
7575
}
@@ -86,7 +86,7 @@ impl<Http: HttpClient> Client<Http> {
8686
host: host.into(),
8787
api_key: api_key.map(|key| key.into()),
8888
http_client,
89-
})
89+
}),
9090
}
9191
}
9292

0 commit comments

Comments
 (0)