Fix spelling
This commit is contained in:
parent
f07c7d3b9e
commit
8b3cfa469c
|
@ -100,14 +100,14 @@ resulting value to a _newly declared variable._
|
|||
From 6.1, `wait()` on `Void` actors shouldn't assign the resulting value. So, the following code
|
||||
|
||||
```c++
|
||||
Futue<Void> asyncTask(); //defined elsewhere
|
||||
Future<Void> asyncTask(); //defined elsewhere
|
||||
Void _ = wait(asyncTask());
|
||||
```
|
||||
|
||||
becomes
|
||||
|
||||
```c++
|
||||
Futue<Void> asyncTask(); //defined elsewhere
|
||||
Future<Void> asyncTask(); //defined elsewhere
|
||||
wait(asyncTask());
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue