From 92e9db90649a158be7600b73813d632d2002c1ce Mon Sep 17 00:00:00 2001 From: Drew Gross Date: Wed, 10 Feb 2016 16:31:07 -0800 Subject: [PATCH] Fix comment --- src/Schema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Schema.js b/src/Schema.js index 859ad804..d8f38499 100644 --- a/src/Schema.js +++ b/src/Schema.js @@ -561,7 +561,7 @@ Schema.prototype.getExpectedType = function(className, key) { // Checks if a given class is in the schema. Needs to load the // schema first, which is kinda janky. Hopefully we can refactor -// and make this be a regular value. Parse would probably +// and make this be a regular value. Schema.prototype.hasClass = function(className) { return this.reload().then(newSchema => !!newSchema.data[className]); }