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

clippy: empty_line_after_doc_comments #4393

Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions sdk/define-syscall/src/codes.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// These are syscall codes specified in SIMD-0178.
/// If a new syscall is to be included, add a new number constant
/// for correct registration.
//! These are syscall codes specified in SIMD-0178.
//! If a new syscall is to be included, add a new number constant
//! for correct registration.

macro_rules! define_code {
($name:ident, $code:literal) => {
Expand Down
1 change: 0 additions & 1 deletion streamer/src/nonblocking/quic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ pub fn spawn_server_multi(
/// litter the code with open connection tracking. This is added into the
/// connection table as part of the ConnectionEntry. The reference is auto
/// reduced when it is dropped.

struct ClientConnectionTracker {
stats: Arc<StreamerStats>,
}
Expand Down
1 change: 0 additions & 1 deletion validator/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2451,7 +2451,6 @@ fn hash_validator(hash: String) -> Result<(), String> {
}

/// Test validator

pub fn test_app<'a>(version: &'a str, default_args: &'a DefaultTestArgs) -> App<'a, 'a> {
App::new("solana-test-validator")
.about("Test Validator")
Expand Down
Loading