Skip to content

Commit 2382747

Browse files
committed
Fix Typos
Fixes a few small typos.
1 parent 2488278 commit 2382747

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CONTRIBUTING.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To run the integration test
2424
- Do a production build by running `yarn prod`
2525
- `cd ./integration`
2626
- Run `yarn prepare-packages` to install required packages
27-
- Run `Yarn run-integration` to run the integration tests
27+
- Run `yarn run-integration` to run the integration tests
2828

2929
### Building Production Bundle
3030

server/api/workspace/resolver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default class WorkspaceResolver {
4141
this.results = new Results(root);
4242
this.results.getCoverageReportPath(this.majesticConfig);
4343

44-
pubsub.publish("WorspaceInitialized", {
44+
pubsub.publish("WorkspaceInitialized", {
4545
coverageDirectory: this.results.coverageDirectory
4646
});
4747

server/static-files.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function initializeStaticRoutes(express: exp.Application, root: string) {
2424
})
2525
);
2626

27-
pubsub.subscribe("WorspaceInitialized", ({ coverageDirectory }) => {
27+
pubsub.subscribe("WorkspaceInitialized", ({ coverageDirectory }) => {
2828
if (coverageDirectory.trim() !== "") {
2929
express.use("/coverage", exp.static(coverageDirectory));
3030
}

0 commit comments

Comments
 (0)