diff --git a/doc/html/callable_traits/ref_bind.html b/doc/html/callable_traits/ref_bind.html
index 5163954..a1023cb 100644
--- a/doc/html/callable_traits/ref_bind.html
+++ b/doc/html/callable_traits/ref_bind.html
@@ -35,7 +35,7 @@
callable_traits::bind
is not compatible with the Microsoft Visual C++ compiler in Visual Studio
(a.k.a. MSVC). Accordingly, the example(s) below will not compile in MSVC.
- However, Windows users can still use clang-cl. Refer to the MSVC
+ However, Visual Studio users can still use Clang-cl. Refer to the MSVC
Issues section for more information.
callable_traits::bind
is the only feature of CallableTraits with non-constexpr
behavior. However, the runtime behavior is only provided for convenience
-- callable_traits::bind
is designed to be a metaprogramming tool, and may be used in unevaluated
contexts.
-
/* In this example, the last _1 placeholder in the bind
expression forces all other _1 slots to accept ScaryMonster,
because ScaryMonster is the narrowest of all _1 parameters. */
@@ -200,9 +201,9 @@ because ScaryMonster is the narrowest of all _1 parameters. */
#include <cassert> #include <type_traits> #include <functional> @@ -253,6 +254,7 @@ because ScaryMonster is the narrowest of all _1 parameters. */ return 0; }+