various: adds missing apostrophes to comments

Updates #cleanup

Change-Id: I7bf29cc153c3c04e087f9bdb146c3437bed0129a
Signed-off-by: Alex Chan <alexc@tailscale.com>
This commit is contained in:
Alex Chan
2025-11-14 17:33:55 +00:00
committed by Alex Chan
parent bd36817e84
commit 9134440008
13 changed files with 27 additions and 27 deletions
+2 -2
View File
@@ -119,7 +119,7 @@ func TestSigNested(t *testing.T) {
}
// Test verification fails if the outer signature is signed with a
// different public key to whats specified in WrappingPubkey
// different public key to what's specified in WrappingPubkey
sig.Signature = ed25519.Sign(priv, sigHash[:])
if err := sig.verifySignature(node.Public(), k); err == nil {
t.Error("verifySignature(node) succeeded with different signature")
@@ -275,7 +275,7 @@ func TestSigCredential(t *testing.T) {
}
// Test verification fails if the outer signature is signed with a
// different public key to whats specified in WrappingPubkey
// different public key to what's specified in WrappingPubkey
sig.Signature = ed25519.Sign(priv, sigHash[:])
if err := sig.verifySignature(node.Public(), k); err == nil {
t.Error("verifySignature(node) succeeded with different signature")