Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
bombsimon authored Apr 19, 2022
1 parent 211a2e0 commit b303615
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ libraries:
```

To compile and run your code in the simulator hit or `Cmd + Shift + P` on Mac or
`Ctrl + Shift + P` on Windows and search for "Run in Playdate simulator".
`Ctrl + Shift + P` on Windows and search for "Run app in Playdate simulator".

That's it, you get auto-completion and the ability to hit a command to trigger
loading it into the sim.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"commands": [
{
"command": "extension.runSimulator",
"title": "Run in Playdate simulator"
"title": "Run app in Playdate simulator"
}
],
"contributes": {
Expand Down
4 changes: 2 additions & 2 deletions src/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function compileWithDefaults(): boolean {

let result = playdate.compile(sdk, `${ws}/source`, `${ws}/output.pdx`);
if (result?.status !== 0 || !result) {
showMessage("failed to compile project");
showMessage("Failed to compile project.");
return false;
}

Expand All @@ -28,7 +28,7 @@ export function runSimulatorWithDefaults(): boolean {

let result = playdate.runSimulator(sdk, `${ws}/output.pdx`);
if (result?.status !== 0 || !result) {
showMessage("failed to start simulator");
showMessage("Failed to start simulator.");
return false;
}

Expand Down

0 comments on commit b303615

Please sign in to comment.