Rollup merge of #74904 - joshtriplett:typo-fix, r=jonas-schievink
Fix some typos in src/librustdoc/clean/auto_trait.rs
This commit is contained in:
commit
1d53340e04
@ -430,14 +430,14 @@ fn make_final_bounds(
|
||||
}
|
||||
|
||||
// Converts the calculated ParamEnv and lifetime information to a clean::Generics, suitable for
|
||||
// display on the docs page. Cleaning the Predicates produces sub-optimal WherePredicate's,
|
||||
// display on the docs page. Cleaning the Predicates produces sub-optimal `WherePredicate`s,
|
||||
// so we fix them up:
|
||||
//
|
||||
// * Multiple bounds for the same type are coalesced into one: e.g., 'T: Copy', 'T: Debug'
|
||||
// becomes 'T: Copy + Debug'
|
||||
// * Fn bounds are handled specially - instead of leaving it as 'T: Fn(), <T as Fn::Output> =
|
||||
// K', we use the dedicated syntax 'T: Fn() -> K'
|
||||
// * We explcitly add a '?Sized' bound if we didn't find any 'Sized' predicates for a type
|
||||
// * We explicitly add a '?Sized' bound if we didn't find any 'Sized' predicates for a type
|
||||
fn param_env_to_generics(
|
||||
&self,
|
||||
tcx: TyCtxt<'tcx>,
|
||||
@ -588,7 +588,7 @@ fn param_env_to_generics(
|
||||
.args;
|
||||
|
||||
match args {
|
||||
// Convert somethiung like '<T as Iterator::Item> = u8'
|
||||
// Convert something like '<T as Iterator::Item> = u8'
|
||||
// to 'T: Iterator<Item=u8>'
|
||||
GenericArgs::AngleBracketed {
|
||||
ref mut bindings, ..
|
||||
@ -712,7 +712,7 @@ fn sort_where_bounds(&self, mut bounds: &mut Vec<GenericBound>) {
|
||||
// since FxHasher has different behavior for 32-bit and 64-bit platforms.
|
||||
//
|
||||
// Obviously, it's extremely undesirable for documentation rendering
|
||||
// to be depndent on the platform it's run on. Apart from being confusing
|
||||
// to be dependent on the platform it's run on. Apart from being confusing
|
||||
// to end users, it makes writing tests much more difficult, as predicates
|
||||
// can appear in any order in the final result.
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user