Merge pull request #307 from sjaustirni/develop

Fixed a bug in the first example in the docs
This commit is contained in:
Jason Turner 2016-11-29 11:25:25 -07:00 committed by GitHub
commit e8c03b33c6

View File

@ -65,7 +65,7 @@
/// int main()
/// {
/// chaiscript::ChaiScript chai;
/// chai.add(&function, "function");
/// chai.add(chaiscript::fun(&function), "function");
///
/// double d = chai.eval<double>("function(3, 4.75);");
/// }