Skip to content

Commit 6a8879f

Browse files
authored
Corrected all misspellings of the word couldn't throughout the source code. (#660)
1 parent 3a75999 commit 6a8879f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/viewer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ function getChartData(analyzerOpts, ...args) {
184184
try {
185185
chartData = analyzer.getViewerData(...args, analyzerOpts);
186186
} catch (err) {
187-
logger.error(`Could't analyze webpack bundle:\n${err}`);
187+
logger.error(`Couldn't analyze webpack bundle:\n${err}`);
188188
logger.debug(err.stack);
189189
chartData = null;
190190
}
@@ -195,7 +195,7 @@ function getChartData(analyzerOpts, ...args) {
195195
chartData
196196
&& !Array.isArray(chartData)
197197
) {
198-
logger.error("Could't find any javascript bundles in provided stats file");
198+
logger.error("Couldn't find any javascript bundles in provided stats file");
199199
chartData = null;
200200
}
201201

test/analyzer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ describe('Analyzer', function () {
9494
);
9595
});
9696

97-
it.skip("should not filter out modules that we could't find during parsing", async function () {
97+
it.skip("should not filter out modules that we couldn't find during parsing", async function () {
9898
generateReportFrom('with-missing-parsed-module/stats.json');
9999
const chartData = await getChartData();
100100
let unparsedModules = 0;

0 commit comments

Comments
 (0)