@@ -319,8 +319,9 @@ impl<KC, DC, C> EncryptedDatabase<KC, DC, C> {
319319
320320 /// Returns an iterator over all of the values of a single key.
321321 ///
322- /// You can make this iterator `Send`able between threads by
323- /// using the `read-txn-no-tls` crate feature.
322+ /// You can make this iterator `Send`able between threads by opening
323+ /// the environment with the [`EnvOpenOptions::read_txn_without_tls`]
324+ /// method.
324325 ///
325326 /// ```
326327 /// # use std::fs;
@@ -822,8 +823,9 @@ impl<KC, DC, C> EncryptedDatabase<KC, DC, C> {
822823
823824 /// Return a lexicographically ordered iterator of all key-value pairs in this database.
824825 ///
825- /// You can make this iterator `Send`able between threads by
826- /// using the `read-txn-no-tls` crate feature.
826+ /// You can make this iterator `Send`able between threads by opening
827+ /// the environment with the [`EnvOpenOptions::read_txn_without_tls`]
828+ /// method.
827829 ///
828830 /// ```
829831 /// # use std::fs;
@@ -920,8 +922,9 @@ impl<KC, DC, C> EncryptedDatabase<KC, DC, C> {
920922
921923 /// Return a reversed lexicographically ordered iterator of all key-value pairs in this database.
922924 ///
923- /// You can make this iterator `Send`able between threads by
924- /// using the `read-txn-no-tls` crate feature.
925+ /// You can make this iterator `Send`able between threads by opening
926+ /// the environment with the [`EnvOpenOptions::read_txn_without_tls`]
927+ /// method.
925928 ///
926929 /// ```
927930 /// # use std::fs;
@@ -1021,8 +1024,9 @@ impl<KC, DC, C> EncryptedDatabase<KC, DC, C> {
10211024 ///
10221025 /// Comparisons are made by using the comparator `C`.
10231026 ///
1024- /// You can make this iterator `Send`able between threads by
1025- /// using the `read-txn-no-tls` crate feature.
1027+ /// You can make this iterator `Send`able between threads by opening
1028+ /// the environment with the [`EnvOpenOptions::read_txn_without_tls`]
1029+ /// method.
10261030 ///
10271031 /// ```
10281032 /// # use std::fs;
@@ -1143,8 +1147,9 @@ impl<KC, DC, C> EncryptedDatabase<KC, DC, C> {
11431147 ///
11441148 /// Comparisons are made by using the comparator `C`.
11451149 ///
1146- /// You can make this iterator `Send`able between threads by
1147- /// using the `read-txn-no-tls` crate feature.
1150+ /// You can make this iterator `Send`able between threads by opening
1151+ /// the environment with the [`EnvOpenOptions::read_txn_without_tls`]
1152+ /// method.
11481153 ///
11491154 /// ```
11501155 /// # use std::fs;
@@ -1265,8 +1270,9 @@ impl<KC, DC, C> EncryptedDatabase<KC, DC, C> {
12651270 ///
12661271 /// Comparisons are made by using the bytes representation of the key.
12671272 ///
1268- /// You can make this iterator `Send`able between threads by
1269- /// using the `read-txn-no-tls` crate feature.
1273+ /// You can make this iterator `Send`able between threads by opening
1274+ /// the environment with the [`EnvOpenOptions::read_txn_without_tls`]
1275+ /// method.
12701276 ///
12711277 /// ```
12721278 /// # use std::fs;
@@ -1389,8 +1395,9 @@ impl<KC, DC, C> EncryptedDatabase<KC, DC, C> {
13891395 ///
13901396 /// Comparisons are made by using the bytes representation of the key.
13911397 ///
1392- /// You can make this iterator `Send`able between threads by
1393- /// using the `read-txn-no-tls` crate feature.
1398+ /// You can make this iterator `Send`able between threads by opening
1399+ /// the environment with the [`EnvOpenOptions::read_txn_without_tls`]
1400+ /// method.
13941401 ///
13951402 /// ```
13961403 /// # use std::fs;
0 commit comments