From 3d302bdc2f01796c8cef5745fc357a76b6b9e89f Mon Sep 17 00:00:00 2001 From: Mark Pitblado Date: Tue, 29 Jul 2025 21:00:15 -0700 Subject: [PATCH] fix(comment): move quotation marks to proper location Very small issue that I noticed when I downloaded this exercise. Does not impact any code or tests. --- .../practice/difference-of-squares/difference-of-squares.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/difference-of-squares/difference-of-squares.sql b/exercises/practice/difference-of-squares/difference-of-squares.sql index 09eb413f..62cd0b7c 100644 --- a/exercises/practice/difference-of-squares/difference-of-squares.sql +++ b/exercises/practice/difference-of-squares/difference-of-squares.sql @@ -1,2 +1,2 @@ --- Schema: CREATE TABLE "difference-of-squares" ("number" INT", property" TEXT, "result" INT); +-- Schema: CREATE TABLE "difference-of-squares" ("number" INT, "property" TEXT, "result" INT); -- Task: update the difference-of-squares table and set the result based on the number and property fields.