Skip to content

Commit

Permalink
rust/smb: fix rustdoc line
Browse files Browse the repository at this point in the history
'///' style rust comments/documentation come before the item being
documented.

Spotted by clippy.
  • Loading branch information
jasonish authored and victorjulien committed Nov 29, 2024
1 parent 7bdbe7e commit aa6e94f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rust/src/smb/smb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,8 @@ impl SMBTransactionTreeConnect {

#[derive(Debug)]
pub struct SMBTransaction {
pub id: u64, /// internal id
/// internal id
pub id: u64,

/// version, command and status
pub vercmd: SMBVerCmdStat,
Expand Down

0 comments on commit aa6e94f

Please sign in to comment.