From 3b959319734495c66025e5a99edb9bddd71cc6c4 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Mon, 30 Jan 2012 11:53:12 -0700 Subject: [PATCH] Fixup some documentation --- include/chaiscript/chaiscript.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/chaiscript/chaiscript.hpp b/include/chaiscript/chaiscript.hpp index 0f17284c..38b2cea0 100644 --- a/include/chaiscript/chaiscript.hpp +++ b/include/chaiscript/chaiscript.hpp @@ -192,8 +192,8 @@ /// Overloaded methods will need some help, to hint the compiler as to which overload you want: /// /// \code -/// chai.add(fun(&MyClass::overloadedmethod), "overloadedmethod")); -/// chai.add(fun(&MyClass::overloadedmethod, "overloadedmethod")); +/// chai.add(fun(&MyClass::overloadedmethod), "overloadedmethod"); +/// chai.add(fun(&MyClass::overloadedmethod), "overloadedmethod"); /// \endcode /// /// There are also shortcuts built into chaiscript::fun for binding up to the first two parameters of the function.