Skip to content

Commit

Permalink
Add missing space (#6512)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexr00 authored Dec 5, 2024
1 parent 79856ee commit 25d7f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lm/tools/searchTools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ export class SearchTool extends RepoToolBase<SearchToolParameters> {
const parameterQuery = options.input.query;
const message = new vscode.MarkdownString();
message.appendText(vscode.l10n.t('Searching for issues with "{0}".', parameterQuery));
message.appendMarkdown(vscode.l10n.t('[Open on GitHub.com]({0})', escapeMarkdown(this.toGitHubUrl(parameterQuery))));
message.appendMarkdown(vscode.l10n.t(' [Open on GitHub.com]({0})', escapeMarkdown(this.toGitHubUrl(parameterQuery))));

return {
invocationMessage: message
Expand Down

0 comments on commit 25d7f72

Please sign in to comment.