From f745c83bb7f958f5c210fecd74a9fbdf9c09100b Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Wed, 16 Jan 2019 10:28:19 +0900 Subject: [PATCH] Closes 466. Removing mentions of the chain collector. (#467) --- src/collector/multi_collector.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/collector/multi_collector.rs b/src/collector/multi_collector.rs index 2595e7f24..717c8426b 100644 --- a/src/collector/multi_collector.rs +++ b/src/collector/multi_collector.rs @@ -96,7 +96,10 @@ impl FruitHandle { /// Multicollector makes it possible to collect on more than one collector. /// It should only be used for use cases where the Collector types is unknown /// at compile time. -/// If the type of the collectors is known, you should prefer to use `ChainedCollector`. +/// +/// If the type of the collectors is known, you can just group yours collectors +/// in a tuple. See the +/// [Combining several collectors section of the collector documentation](./index.html#combining-several-collectors). /// /// ```rust /// #[macro_use]