Skip to content

Commit de2a1b6

Browse files
authored
chore: fix minor grammatical error in add_issue_comment tool description
1 parent 95726ad commit de2a1b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/github/__toolsnaps__/add_issue_comment.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"annotations": {
33
"title": "Add comment to issue"
44
},
5-
"description": "Add a comment to a specific issue in a GitHub repository. Use this tool to add comments to pull requests as well (in this case pass pull request number as issue_number), but only if user is not asking specifically to add review comments.",
5+
"description": "Add a comment to a specific issue in a GitHub repository. Use this tool to add comments to pull requests as well (in this case pass pull request number as issue_number), but only if the user is not asking specifically to add review comments.",
66
"inputSchema": {
77
"properties": {
88
"body": {

pkg/github/issues.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ func AddIssueComment(t translations.TranslationHelperFunc) inventory.ServerTool
592592
ToolsetMetadataIssues,
593593
mcp.Tool{
594594
Name: "add_issue_comment",
595-
Description: t("TOOL_ADD_ISSUE_COMMENT_DESCRIPTION", "Add a comment to a specific issue in a GitHub repository. Use this tool to add comments to pull requests as well (in this case pass pull request number as issue_number), but only if user is not asking specifically to add review comments."),
595+
Description: t("TOOL_ADD_ISSUE_COMMENT_DESCRIPTION", "Add a comment to a specific issue in a GitHub repository. Use this tool to add comments to pull requests as well (in this case pass pull request number as issue_number), but only if the user is not asking specifically to add review comments."),
596596
Annotations: &mcp.ToolAnnotations{
597597
Title: t("TOOL_ADD_ISSUE_COMMENT_USER_TITLE", "Add comment to issue"),
598598
ReadOnlyHint: false,

0 commit comments

Comments
 (0)