style(common): fix typo in protobuf comments
What changed, and why it matters
This commit fixes a single grammar typo in a code comment. The word 'host' was changed to 'the host' in a protobuf message description. No code behavior, security logic, or functionality was changed.
No action required. This is a non-functional comment-only change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies one line in common/protob/messages-thp.proto, changing the comment for the autoconnect field in message ThpCredentialRequest from ‘Whether host wants…’ to ‘Whether the host wants…’. It is a documentation/comment-only style fix with no generated-code, wire-format, or semantic impact.
Changed components
common/protob/messages-thp.protoInspect captured patch +1 / −1
diff --git a/common/protob/messages-thp.proto b/common/protob/messages-thp.proto
index e3fe7e4b..dc8c5d54 100644
--- a/common/protob/messages-thp.proto
+++ b/common/protob/messages-thp.proto
@@ -209,7 +209,7 @@ message ThpNfcTagTrezor {
*/
message ThpCredentialRequest {
required bytes host_static_public_key = 1; // Host's static public key identifying the credential.
- optional bool autoconnect = 2 [default = false]; // Whether host wants to autoconnect without user confirmation
+ optional bool autoconnect = 2 [default = false]; // Whether the host wants to autoconnect without user confirmation
optional bytes credential = 3; // Host's previous credential
}
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.