From 2bf05ae40ffb79b0f555828ba7900b0e50b5acfc Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Thu, 27 Oct 2016 12:21:16 -0700 Subject: [PATCH] [API] Add missing semicolon, satisfy JSHint --- src/api/types/TypeRegistry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/types/TypeRegistry.js b/src/api/types/TypeRegistry.js index ffea660510..720a43d6c4 100644 --- a/src/api/types/TypeRegistry.js +++ b/src/api/types/TypeRegistry.js @@ -63,7 +63,7 @@ define([], function () { */ TypeRegistry.prototype.get = function (typeKey) { return this.types[typeKey]; - } + }; return TypeRegistry; });