Skip to content

Commit f8f169d

Browse files
committed
fix: typo in commit signing status info
Signed-off-by: leo <[email protected]>
1 parent 9abda2c commit f8f169d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Models/CommitSignInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ public string ToolTip
3636
switch (VerifyResult)
3737
{
3838
case 'G':
39-
return $"Good Signature.\n\nKey: {Key}";
39+
return $"Good signature.\n\nKey: {Key}";
4040
case 'B':
41-
return $"Bad Signature.\n\nKey: {Key}";
41+
return $"Bad signature.\n\nKey: {Key}";
4242
case 'U':
43-
return $"Good Signature with unknown validity.\n\nKey: {Key}";
43+
return $"Good signature with unknown validity.\n\nKey: {Key}";
4444
case 'X':
45-
return $"Good Signature but has expired.\n\nKey: {Key}";
45+
return $"Good signature but has expired.\n\nKey: {Key}";
4646
case 'Y':
47-
return $"Good Signature made by expired key.\n\nKey: {Key}";
47+
return $"Good signature made by expired key.\n\nKey: {Key}";
4848
case 'R':
4949
return $"Good signature made by a revoked key.\n\nKey: {Key}";
5050
case 'E':

0 commit comments

Comments
 (0)