Commit 7638057b authored by Davis King's avatar Davis King

fixed grammar

parent b6ae2a6d
......@@ -62,9 +62,9 @@ public:
tp.add_task(*this,&test::subtask2); // schedule call to this->subtask2()
// Since var is a future, this line will wait for the test::subtask task to
// finish and before allowing us to access the contents of var. var will
// finish before allowing us to access the contents of var. Then var will
// return the integer it contains. In this case result will be assigned
// the value of 2 since var was incremented by subtask().
// the value 2 since var was incremented by subtask().
int result = var;
// print out the result
dlog << LINFO << "var = " << result;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment