Skip to content

Commit b7894e5

Browse files
authored
cleanup(pubsublite): internal typo (#10276)
1 parent ba56822 commit b7894e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/cloud/pubsublite/internal/futures.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ struct ChainFutureImpl {
3838
*
3939
* Given two futures `future<U> r` and `future<T> f` we often want to write:
4040
* @code
41-
* f.then([tmp = std::move(f)](future<T>) mutable { return std::move(tmp); }
42-
* @encode
41+
* f.then([tmp = std::move(f)](future<T>) mutable { return std::move(tmp); });
42+
* @endcode
4343
*
4444
* Unfortunately we cannot, as the project needs to support C++11. This is
4545
* a helper to avoid repetition of this pattern.

0 commit comments

Comments
 (0)