From e4d122366759e668abd3c1f2fde78bc68ebcb170 Mon Sep 17 00:00:00 2001 From: Kirk Rodrigues <2454684+kirkrodrigues@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:38:12 -0500 Subject: [PATCH] Address the Rabbit's comments. --- docs/quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/quick-start.md b/docs/quick-start.md index 8ddbb24..646c52d 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -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 @@ -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