File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -439,10 +439,10 @@ where
439
439
/// * A Producer initializes the value of one of its fields of a specific type. (or is otherwise
440
440
/// prepared to generate a value requested). eg, `backtrace::Backtrace` or
441
441
/// `std::backtrace::Backtrace`
442
- /// * A Consumer requests an object of a specific type (say `std::backtrace::Backtrace). In the case
443
- /// of a `dyn Error` trait object (the Producer), there are methods called `request_ref` and
444
- /// `request_value` are available to simplify obtaining an `` Option<T>`` for a given type. * The
445
- /// Producer, when requested, populates the given Request object which is given as a mutable
442
+ /// * A Consumer requests an object of a specific type (say `std::backtrace::Backtrace` ). In the
443
+ /// case of a `dyn Error` trait object (the Producer), there are functions called `request_ref` and
444
+ /// `request_value` to simplify obtaining an `Option<T>` for a given type.
445
+ /// * The Producer, when requested, populates the given Request object which is given as a mutable
446
446
/// reference.
447
447
/// * The Consumer extracts a value or reference to the requested type from the `Request` object
448
448
/// wrapped in an `Option<T>`; in the case of `dyn Error` the aforementioned `request_ref` and `
You can’t perform that action at this time.
0 commit comments