diff --git a/lib/configuration/hooks/studio/index.js b/lib/configuration/hooks/studio/index.js index 434cc2bb63..62bb2ad059 100644 --- a/lib/configuration/hooks/studio/index.js +++ b/lib/configuration/hooks/studio/index.js @@ -202,7 +202,7 @@ module.exports = function (strapi) { appId: strapi.config.studio.appId, token: strapi.token, encrypted: strapi.rsa.encrypt({ - err: stringify('Unknow action', null, 2), + err: stringify('Unknown action', null, 2), data: null }) }); @@ -250,7 +250,7 @@ module.exports = function (strapi) { appId: strapi.config.studio.appId, token: strapi.token, encrypted: strapi.rsa.encrypt({ - err: stringify('Unknow action', null, 2), + err: stringify('Unknown action', null, 2), data: null }) }); @@ -364,7 +364,7 @@ module.exports = function (strapi) { } }); } else { - cb('Unknow path `' + rootPath + '`', null); + cb('Unknown path `' + rootPath + '`', null); } }); }, @@ -410,7 +410,7 @@ module.exports = function (strapi) { } }); } else { - deferred.reject('Unknow path `' + path + '`'); + deferred.reject('Unknown path `' + path + '`'); } });