Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update diagnostic ID CP0012 description #44889

Merged
merged 3 commits into from
Feb 18, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/fundamentals/apicompat/diagnostic-ids.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ This reference article lists all the error codes generated by package validation
| CP0009 | A type that was unsealed on one side was annotated as `sealed` on the other compared side. | Remove the `sealed` annotation from the type. |
| CP0010 | The underlying type of an enum changed from one side to the other. | Change the underlying type back to what it was previously. |
| CP0011 | The value of a member in an enum changed from one side to the other. | Change the value of the member back to what it was previously. |
| CP0012 | The `virtual` keyword was removed from a member that was previously virtual. | Add the `virtual` keyword back to the member. |
| CP0012 | Either the `virtual` or `abstract` keyword was removed from a member that was previously virtual. | Add the `virtual` or `abstract` keyword back to the member. |
| CP0013 | The `virtual` keyword was added to a member that was previously not virtual. | Remove the `virtual` keyword from the member. |
| CP0014 | An attribute was removed from a member that previously had it. | Add the attribute back to the member. |
| CP0015 | The arguments passed to an attribute changed from one side to the other. | Change the arguments to the attribute back to what they were previously. |
Expand Down
Loading