From: Radoslaw Zarzynski Date: Thu, 19 Nov 2020 15:43:42 +0000 (+0100) Subject: crimson: fix a typo in errorator-related comment. X-Git-Tag: v16.1.0~538^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F38191%2Fhead;p=ceph.git crimson: fix a typo in errorator-related comment. It was introduced in dca575992b34611d20f50c5db47e4b533cd7dc69. Signed-off-by: Radoslaw Zarzynski --- diff --git a/src/crimson/common/errorator.h b/src/crimson/common/errorator.h index 872f8bf60fba..4fdbb53b5486 100644 --- a/src/crimson/common/errorator.h +++ b/src/crimson/common/errorator.h @@ -286,7 +286,7 @@ template static constexpr auto composer(FuncHead&& head, FuncTail&&... tail) { return [ head = std::forward(head), - // perfect forwarding in lambda's closure isn't availble in C++17 + // perfect forwarding in lambda's closure isn't available in C++17 // using tuple as workaround; see: https://stackoverflow.com/a/49902823 tail = std::make_tuple(std::forward(tail)...) ] (auto&&... args) mutable -> decltype(auto) {