-
Notifications
You must be signed in to change notification settings - Fork 784
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
Fix various invalid_html_tags clippy errors #2862
Conversation
@@ -15,6 +15,8 @@ | |||
// specific language governing permissions and limitations | |||
// under the License. | |||
|
|||
#![allow(rustdoc::invalid_html_tags)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are auto-generated rs file that I cannot modify directly. So allowing it here.
@@ -248,7 +248,7 @@ | |||
|
|||
#![deny(clippy::redundant_clone)] | |||
#![warn(missing_debug_implementations)] | |||
|
|||
#![allow(rustdoc::invalid_html_tags)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are auto-generated rs file that I cannot modify directly. So allowing it here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @viirya
Benchmark runs are scheduled for baseline = 0268bba and contender = 3bb7f38. 3bb7f38 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Which issue does this PR close?
Closes #2861.
Rationale for this change
What changes are included in this PR?
Are there any user-facing changes?