Skip to content

Commit

Permalink
Address the Rabbit's comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkrodrigues committed Dec 18, 2024
1 parent 8bb6b55 commit e4d1223
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ auto main(int argc, char const* argv[]) -> int {
case JobStatus::Succeeded: {
auto result = job_status.get_result();
int expected = x + y;
if (expected == job_status.get_result()) {
if (expected == result) {
return 0;
} else {
std::cerr << "`sum` returned unexpected result. Expected: " << expected
Expand Down Expand Up @@ -258,7 +258,7 @@ build/src/spider/spider_scheduler \
NOTE:

* If you used a different set of arguments to set up the storage backend, ensure you update the
`storage_url` argument ihn the command.
`storage_url` argument in the command.
* If the scheduler fails to bind to port `6000`, change the port in the command and try again.

## Setting up a worker
Expand Down

0 comments on commit e4d1223

Please sign in to comment.