We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba56822 commit b7894e5Copy full SHA for b7894e5
google/cloud/pubsublite/internal/futures.h
@@ -38,8 +38,8 @@ struct ChainFutureImpl {
38
*
39
* Given two futures `future<U> r` and `future<T> f` we often want to write:
40
* @code
41
- * f.then([tmp = std::move(f)](future<T>) mutable { return std::move(tmp); }
42
- * @encode
+ * f.then([tmp = std::move(f)](future<T>) mutable { return std::move(tmp); });
+ * @endcode
43
44
* Unfortunately we cannot, as the project needs to support C++11. This is
45
* a helper to avoid repetition of this pattern.
0 commit comments