File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 94
94
//! functions for requesting data from an object which implements `Provider`. Generally, end users
95
95
//! should not call `request_*` directly, they are helper functions for intermediate implementers
96
96
//! to use to implement a user-facing interface. This is purely for the sake of ergonomics, there is
97
- //! safety concern here; intermediate implementers can typically support methods rather than
97
+ //! no safety concern here; intermediate implementers can typically support methods rather than
98
98
//! free functions and use more specific names.
99
99
//!
100
100
//! Typically, a data provider is a trait object of a trait which extends `Provider`. A user will
@@ -1007,7 +1007,7 @@ mod tags {
1007
1007
type Reified = T ;
1008
1008
}
1009
1009
1010
- /// Type-based tag similar to [`Value`] but which may be unsized (i.e., has a `' Sized` bound).
1010
+ /// Type-based tag similar to [`Value`] but which may be unsized (i.e., has a `? Sized` bound).
1011
1011
#[ derive( Debug ) ]
1012
1012
pub struct MaybeSizedValue < T : ?Sized + ' static > ( PhantomData < T > ) ;
1013
1013
You can’t perform that action at this time.
0 commit comments