fix(g10k.go): Fix typos

This commit is contained in:
christiangoeschel 2025-03-31 00:05:50 -04:00
parent 8399dd78f2
commit 2ca745b4ad
Signed by: christiangoeschel
GPG Key ID: 9C5DF8B5AF67BFB2

View File

@ -45,7 +45,7 @@ func runG10K(c *gin.Context) {
if err = cmd.Start(); err != nil {
c.JSON(http.StatusInternalServerError, gin.H{
"status": "Failed to attach to start program",
"status": "Failed to start program",
"error": err})
return
}
@ -56,7 +56,7 @@ func runG10K(c *gin.Context) {
if err = cmd.Wait(); err != nil {
c.JSON(http.StatusInternalServerError, gin.H{
"status": "The program exit with a non-zero code",
"status": "The program exited with a non-zero code",
"error": err})
return
}