From a4126e7f104ec83565c17faf115e2b1138cebef3 Mon Sep 17 00:00:00 2001 From: harttle Date: Fri, 8 Dec 2017 00:24:23 +0800 Subject: [PATCH] fix: typo in scope.get("liquid") error message, fixes #50 --- src/scope.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scope.js b/src/scope.js index caf9a77ba..f5033c2aa 100644 --- a/src/scope.js +++ b/src/scope.js @@ -12,7 +12,7 @@ var Scope = { }, get: function (str) { if (str === 'liquid') { - throw new Error('NO LONGER SUPPORTED: use scope.opts instread of scope.get("liquid")') + throw new Error('NO LONGER SUPPORTED: use scope.opts instead of scope.get("liquid")') } try { return this.getPropertyByPath(this.scopes, str)