Skip to content

Commit

Permalink
Fix typos from php
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Shillitto committed May 5, 2022
1 parent 76b9143 commit 34c923d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/probe.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const api = new Shotstack.EditApi();
const url = process.argv[2];

if (!url) {
console.log(">> Please provide the URL to a media file to inspect (i.e. php examples/probe.php https://github.com/shotstack/test-media/raw/main/captioning/scott-ko.mp4)\n");
console.log(">> Please provide the URL to a media file to inspect (i.e. node examples/probe.js https://github.com/shotstack/test-media/raw/main/captioning/scott-ko.mp4)\n");
process.exit(1);
}

Expand Down
2 changes: 1 addition & 1 deletion examples/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const api = new Shotstack.EditApi();
const id = process.argv[2];

if (!id) {
console.log(">> Please provide the UUID of the render task (i.e. php examples/status.php 2abd5c11-0f3d-4c6d-ba20-235fc9b8e8b7)\n");
console.log(">> Please provide the UUID of the render task (i.e. node examples/status.js 2abd5c11-0f3d-4c6d-ba20-235fc9b8e8b7)\n");
process.exit(1);
}

Expand Down

0 comments on commit 34c923d

Please sign in to comment.