Skip to content

Commit 1114fd2

Browse files
committed
fix: correct formatting in validation results message and ensure go.mod dependency is properly listed
1 parent ae5f8d7 commit 1114fd2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ require (
99
)
1010

1111
require (
12-
github.com/modelcontextprotocol/go-sdk v1.1.0
1312
github.com/manifoldco/promptui v0.9.0
13+
github.com/modelcontextprotocol/go-sdk v1.1.0
1414
github.com/stretchr/testify v1.11.1
1515
)
1616

internal/mcp/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ func (s *Server) handleValidateCode(params map[string]interface{}) (interface{},
690690
}
691691

692692
// Add note about saved results
693-
textContent += fmt.Sprintf("\n💾 Validation results saved to .sym/validation-results.json\n")
693+
textContent += "\n💾 Validation results saved to .sym/validation-results.json\n"
694694

695695
// Return MCP-compliant response with content array
696696
return map[string]interface{}{

0 commit comments

Comments
 (0)