From ef8a9b6b58234a8617b4576b386c5485550bc41d Mon Sep 17 00:00:00 2001 From: notAxion <67577744+notAxion@users.noreply.github.com> Date: Sun, 1 Oct 2023 09:53:51 +0530 Subject: [PATCH] fix(description): description typos in sql (#371) * fix(description): description typos in sql snippets --- snippets/sql.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/snippets/sql.json b/snippets/sql.json index 473a2680..1e656258 100644 --- a/snippets/sql.json +++ b/snippets/sql.json @@ -212,7 +212,7 @@ "\tTO DISK ${2:filepath}", "\tWITH ${3:DIFERENTIAL};" ], - "description": "Diferencial backup database" + "description": "Differential backup database" }, "primaryk": { "prefix": "primaryk", @@ -222,14 +222,14 @@ "primarykc": { "prefix": "primarykc", "body": ["CONSTRAINT ${1:attribute} PRIMARY KEY(${2:attribute(s)})"], - "description": "Constraint rimary Key" + "description": "Constraint Primary Key" }, "foreingk": { "prefix": "foreingk", "body": [ "FOREIGN KEY(${1:attribute}) REFERENCES ${2:tableName}(${3:attribute})" ], - "description": "Foreing Key" + "description": "Foreign Key" }, "foreingkc": { "prefix": "foreingkc", @@ -237,7 +237,7 @@ "CONSTRAINT ${1:attribute} FOREIGN KEY (${2:attribute(s)})", "\tREFERENCES ${3:tableName}(${4:attribute})" ], - "description": "Constraint foreing Key" + "description": "Constraint foreign Key" }, "check": { "prefix": "check",