Skip to content

Commit 1fabe30

Browse files
authored
Merge pull request #111956 from KalyanChanumolu-MSFT/patch-22
(AzureCXP) MicrosoftDocs/azure-docs#52638
2 parents 7120dbd + d6b533d commit 1fabe30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/mysql/connect-go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ func main() {
284284
rows, err := db.Exec("UPDATE inventory SET quantity = ? WHERE name = ?", 200, "banana")
285285
checkError(err)
286286
rowCount, err := rows.RowsAffected()
287-
fmt.Printf("Deleted %d row(s) of data.\n", rowCount)
287+
fmt.Printf("Updated %d row(s) of data.\n", rowCount)
288288
fmt.Println("Done.")
289289
}
290290
```

0 commit comments

Comments
 (0)