From 94901e09801bc944c7cdf6e65410c863c15e5890 Mon Sep 17 00:00:00 2001 From: James Tanner Date: Fri, 9 Oct 2020 17:37:33 -0400 Subject: [PATCH] Fix: Really silly typo --- lib/loadSchema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/loadSchema.js b/lib/loadSchema.js index 1b79370..7f7fc52 100644 --- a/lib/loadSchema.js +++ b/lib/loadSchema.js @@ -6,7 +6,7 @@ const {version} = require('../package.json'); const schema = YAML.load(path.join(__dirname, '../schema.yaml')); // Update the version, if appropriate. -if (version) schema.info.version = version. +if (version) schema.info.version = version; // Lock the schema. Object.freeze(schema);