fixed minor bug in flow readme

This commit is contained in:
mpilman 2019-08-07 08:34:20 -07:00
parent 46dc9db879
commit ca78e35f31
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ From 6.1, `wait()` on `Void` actors shouldn't assign the resulting value. So, th
```c++
Future<Void> asyncTask(); //defined elsewhere
wait(asyncTask());
Void _ = _wait(asyncTask());
```
becomes