Skip to content

Commit 60e178c

Browse files
committed
fix typo
1 parent 5097204 commit 60e178c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/common/exportsManager.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,11 @@ export class ExportsManager extends EventEmitter<ExportsManagerEvents> {
210210
try {
211211
await fs.mkdir(this.exportsDirectoryPath, { recursive: true });
212212
const outputStream = createWriteStream(inProgressExport.exportPath);
213-
const ejsonTransofrm = this.docToEJSONStream(this.getEJSONOptionsForFormat(jsonExportFormat));
214-
await pipeline([input.stream(), ejsonTransofrm, outputStream], {
213+
const ejsonTransform = this.docToEJSONStream(this.getEJSONOptionsForFormat(jsonExportFormat));
214+
await pipeline([input.stream(), ejsonTransform, outputStream], {
215215
signal: this.shutdownController.signal,
216216
});
217-
docsTransformed = ejsonTransofrm.docsTransformed;
217+
docsTransformed = ejsonTransform.docsTransformed;
218218
pipeSuccessful = true;
219219
} catch (error) {
220220
// If the pipeline errors out then we might end up with

0 commit comments

Comments
 (0)