Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 4658a65

Browse files
authored
Fix a syntax error in main.js
Fix a syntax error in main.js in 07_add-input-params.md
1 parent 344ba5f commit 4658a65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

responses/07_add-input-params.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Now that there are inputs in the action's metadata we can use the `@actions/core
8181
```javascript
8282
const core = require("@actions/core");
8383
84-
const firstGreeting = core.getInput("first-greeting"):
84+
const firstGreeting = core.getInput("first-greeting");
8585
const secondGreeting = core.getInput("second-greeting");
8686
const thirdGreeting = core.getInput("third-greeting");
8787

0 commit comments

Comments
 (0)