We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Detects four consecutive forward slash characters.
This is almost always indicative of a broken doc comment.
four-forward-slashes
suspicious
Users may have a non-standard style that uses 4 forward slashes semantically.
//// The life total of a unit struct Life(u8);
Was likely intended to be:
/// The life total of a unit struct Life(u8);
The text was updated successfully, but these errors were encountered:
OwningPtr
four_forward_slashes
9f0cbfd
Successfully merging a pull request may close this issue.
What it does
Detects four consecutive forward slash characters.
This is almost always indicative of a broken doc comment.
Lint Name
four-forward-slashes
Category
suspicious
Advantage
Drawbacks
Users may have a non-standard style that uses 4 forward slashes semantically.
Example
Was likely intended to be:
The text was updated successfully, but these errors were encountered: