diff --git a/BaseLib/Functional.h b/BaseLib/Functional.h
index daa1c0483ec4658d1c24d9b2e8f3b62fa12ec3c5..4553dc09a34fd064ce5a6a3e64888a3806ce0ff0 100644
--- a/BaseLib/Functional.h
+++ b/BaseLib/Functional.h
@@ -155,7 +155,7 @@ struct FunctionTraits<ReturnType (Object::*)(Args...) const> {
  *
  * auto f_bind = std::function<ReturnType(Arg1, Arg2, Arg3>(
  *                  std::bind(&Object::methodWithThreeArguments,
- *                      std::ref(some_object), _1, _2, _3);
+ *                      std::ref(some_object), _1, _2, _3));
  *
  * auto f_easy = easyBind(&Object::methodWithThreeArguments, some_object);
  * \endcode