[API] Add missing semicolon, satisfy JSHint

This commit is contained in:
Victor Woeltjen
2016-10-27 12:21:16 -07:00
parent 833bad067e
commit 2bf05ae40f

View File

@ -63,7 +63,7 @@ define([], function () {
*/ */
TypeRegistry.prototype.get = function (typeKey) { TypeRegistry.prototype.get = function (typeKey) {
return this.types[typeKey]; return this.types[typeKey];
} };
return TypeRegistry; return TypeRegistry;
}); });