Skip to content

Commit f3c2de9

Browse files
committed
spelling: harmony
1 parent 7355b91 commit f3c2de9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/dependencies/HarmonyExportImportedSpecifierDependency.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ HarmonyExportImportedSpecifierDependency.Template = class HarmonyExportImportedS
450450

451451
case "reexport-non-harmony-default":
452452
return (
453-
"/* harmony reexport (default from non-hamory) */ " +
453+
"/* harmony reexport (default from non-harmony) */ " +
454454
this.getReexportStatement(
455455
module,
456456
module.isUsed(mode.name),
@@ -461,7 +461,7 @@ HarmonyExportImportedSpecifierDependency.Template = class HarmonyExportImportedS
461461

462462
case "reexport-fake-namespace-object":
463463
return (
464-
"/* harmony reexport (fake namespace object from non-hamory) */ " +
464+
"/* harmony reexport (fake namespace object from non-harmony) */ " +
465465
this.getReexportFakeNamespaceObjectStatement(
466466
module,
467467
module.isUsed(mode.name),
@@ -471,7 +471,7 @@ HarmonyExportImportedSpecifierDependency.Template = class HarmonyExportImportedS
471471

472472
case "rexport-non-harmony-undefined":
473473
return (
474-
"/* harmony reexport (non default export from non-hamory) */ " +
474+
"/* harmony reexport (non default export from non-harmony) */ " +
475475
this.getReexportStatement(
476476
module,
477477
module.isUsed(mode.name),
@@ -482,7 +482,7 @@ HarmonyExportImportedSpecifierDependency.Template = class HarmonyExportImportedS
482482

483483
case "reexport-non-harmony-default-strict":
484484
return (
485-
"/* harmony reexport (default from non-hamory) */ " +
485+
"/* harmony reexport (default from non-harmony) */ " +
486486
this.getReexportStatement(
487487
module,
488488
module.isUsed(mode.name),

test/configCases/library/1-use-library/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import d from "library";
22
import { a, b, external } from "library";
33

4-
it("should be able to import hamorny exports from library (" + NAME + ")", function() {
4+
it("should be able to import harmony exports from library (" + NAME + ")", function() {
55
d.should.be.eql("default-value");
66
a.should.be.eql("a");
77
b.should.be.eql("b");

0 commit comments

Comments
 (0)