fix various typos and grammar errors in comments (#834)

This commit is contained in:
Hrvoje Šimić 2016-10-10 12:26:47 +02:00 committed by Timothy
parent 4d8cf7ba9a
commit 7e71bf356b
13 changed files with 40 additions and 33 deletions

View file

@ -38,7 +38,7 @@ let termGroupPropsDecorators;
let propsDecorators;
let reducersDecorators;
// the fs locations where usr plugins are stored
// the fs locations where user plugins are stored
const {path, localPath} = plugins.getBasePaths();
const clearModulesCache = () => {
@ -52,7 +52,7 @@ const clearModulesCache = () => {
// clear require cache
for (const entry in window.require.cache) {
if (entry.indexOf(path) === 0 || entry.indexOf(localPath) === 0) {
// `require` is webpacks', `window.require`, electron's
// `require` is webpacks', `window.require` is electron's
delete window.require.cache[entry];
}
}