From e0389a557ab41870609b662596da2b45d5a8ce9c Mon Sep 17 00:00:00 2001 From: John Haugabook Date: Mon, 9 Feb 2026 21:27:17 -0500 Subject: [PATCH] codespell: make each word of acronym bold --- skills/create-web-form/references/php-mysql-database.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/skills/create-web-form/references/php-mysql-database.md b/skills/create-web-form/references/php-mysql-database.md index ba88c693..1d0cfb16 100644 --- a/skills/create-web-form/references/php-mysql-database.md +++ b/skills/create-web-form/references/php-mysql-database.md @@ -1658,10 +1658,10 @@ them in quotes, which causes a SQL error. | Operation | SQL Command | |-----------|-------------| -| **C**reate | `INSERT INTO table (col1, col2) VALUES (val1, val2)` | -| **R**ead | `SELECT col1, col2 FROM table WHERE condition` | -| **U**pdate | `UPDATE table SET col1=val1 WHERE condition` | -| **D**elete | `DELETE FROM table WHERE condition` | +| **Create** | `INSERT INTO table (col1, col2) VALUES (val1, val2)` | +| **Read** | `SELECT col1, col2 FROM table WHERE condition` | +| **Update** | `UPDATE table SET col1=val1 WHERE condition` | +| **Delete** | `DELETE FROM table WHERE condition` | ### Query Modifiers