mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-06 03:52:53 +00:00
Rollup merge of #85852 - m-ou-se:machineapplicable-docs, r=nikomatsakis
Clarify meaning of MachineApplicable suggestions. This documents the meaning of MachineApplicable in case of multiple suggestions, as described in https://github.com/rust-lang/rust/issues/53934#issuecomment-831396123 r? ``@nikomatsakis``
This commit is contained in:
commit
ff0b7cd087
@ -25,7 +25,11 @@ macro_rules! pluralize {
|
||||
/// before applying the suggestion.
|
||||
#[derive(Copy, Clone, Debug, PartialEq, Hash, Encodable, Decodable)]
|
||||
pub enum Applicability {
|
||||
/// The suggestion is definitely what the user intended. This suggestion should be
|
||||
/// The suggestion is definitely what the user intended, or maintains the exact meaning of the code.
|
||||
/// This suggestion should be automatically applied.
|
||||
///
|
||||
/// In case of multiple `MachineApplicable` suggestions (whether as part of
|
||||
/// the same `multipart_suggestion` or not), all of them should be
|
||||
/// automatically applied.
|
||||
MachineApplicable,
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user