[Docs] Fix typo in C++ Placement Group example (#20386)

This commit is contained in:
Antoni Baum 2021-11-16 00:19:09 +01:00 committed by GitHub
parent 35dc3cf21b
commit ec81f52061
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -133,7 +133,7 @@ Placement groups are atomically created - meaning that if there exists a bundle
.. code-block:: c++
// Wait for the placement group to be ready within the specified time(unit is seconds).
boll ready = pg.Wait(60);
bool ready = pg.Wait(60);
assert(ready);
// You can look at placement group states using this API.