Skip to content

Commit d42db59

Browse files
filipesilvajohannes.werner
authored and
johannes.werner
committed
chore: fix typoed var name (angular#981)
1 parent f387680 commit d42db59

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/broccoli/broccoli-typescript.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ class BroccoliTypeScriptCompiler extends Plugin {
8181
try {
8282
fs.symlinkSync(absoluteFilePath, outputFilePath);
8383
} catch (e) {
84-
const conentStr = fs.readFileSync(absoluteFilePath);
85-
fs.writeFileSync(outputFilePath, conentStr);
84+
const contentStr = fs.readFileSync(absoluteFilePath);
85+
fs.writeFileSync(outputFilePath, contentStr);
8686
}
8787
});
8888
} else {
@@ -211,8 +211,8 @@ class BroccoliTypeScriptCompiler extends Plugin {
211211
try {
212212
fs.symlinkSync(absoluteFilePath, outputFilePath);
213213
} catch (e) {
214-
const conentStr = fs.readFileSync(absoluteFilePath);
215-
fs.writeFileSync(outputFilePath, conentStr);
214+
const contentStr = fs.readFileSync(absoluteFilePath);
215+
fs.writeFileSync(outputFilePath, contentStr);
216216
}
217217
}
218218

0 commit comments

Comments
 (0)