Skip to content

Commit ad009d3

Browse files
authored
fix: Make a patch release for #1894 (#1908)
1 parent 3564848 commit ad009d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/compiler/rereexport.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import { exportstar } from "./reexport";
1111
export { exportstar };
1212

1313
import * as ReexportsNamespace from "./reexport";
14-
// Test our import * as namespace works with different types
14+
// Test our import * as namespace works with different types.
1515
assert(ReexportsNamespace.add(2, 2) == 4);
1616
assert(ReexportsNamespace.rerenamed_mul(2, 2) == 4);
1717
let car: ReexportsNamespace.Car = new ReexportsNamespace.Car();
1818
assert(car.numDoors == 2);
1919

20-
// Test our imported namespace with the exported import * as namespace
20+
// Test our imported namespace with the exported import * as namespace.
2121
assert(ReexportsNamespace.ExportsNamespace.add(2, 2) == 4);
2222
assert(ReexportsNamespace.ExportsNamespace.renamed_mul(2, 2) == 4);
2323
let exportsNamespaceCar: ReexportsNamespace.Car = new ReexportsNamespace.ExportsNamespace.Car();

0 commit comments

Comments
 (0)