File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
crates/matrix-sdk/src/config Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -127,10 +127,11 @@ impl ClientConfig {
127
127
/// * `path` - The path where the stores should save data in. It is the
128
128
/// callers responsibility to make sure that the path exists.
129
129
///
130
- /// In the default configuration the client will open default
131
- /// implementations for the crypto store and the state store. It will use
132
- /// the given path to open the stores. If no path is provided no store will
133
- /// be opened
130
+ /// In the default configuration, and if the corresponding features
131
+ /// (`sled_state_store` and `sled_cryptostore`) are enabled, the client will
132
+ /// open default implementations for the crypto store and the state store.
133
+ /// It will use the given path to open the stores. If no path is provided no
134
+ /// store will be opened
134
135
#[ must_use]
135
136
pub fn store_path ( mut self , path : impl AsRef < Path > ) -> Self {
136
137
self . base_config = self . base_config . store_path ( path) ;
You can’t perform that action at this time.
0 commit comments