From 08b9f03800bef6b201e3fc7676148be6559329f5 Mon Sep 17 00:00:00 2001 From: Radoslaw Zarzynski Date: Thu, 19 Nov 2020 16:43:42 +0100 Subject: [PATCH] crimson: fix a typo in errorator-related comment. It was introduced in dca575992b34611d20f50c5db47e4b533cd7dc69. Signed-off-by: Radoslaw Zarzynski --- src/crimson/common/errorator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.47.3