From 9548118ed40e762b06eab1a4ae80e596d47acac2 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Mon, 7 May 2018 12:50:25 +0900 Subject: [PATCH] Fixed a typo in is_assignable doc --- doc/is_assignable.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/is_assignable.qbk b/doc/is_assignable.qbk index fe4089e..c3f4078 100644 --- a/doc/is_assignable.qbk +++ b/doc/is_assignable.qbk @@ -11,7 +11,7 @@ struct is_assignable : public __tof {}; __inherit If `std::declval() = std::declval()` then inherits from __true_type, -otherwise from __flase_type. Type `T` must be a complete type. +otherwise from __false_type. Type `T` must be a complete type. Note that this trait is somewhat tricky to use correctly: for example: