Merge pull request #330 from IonoclastBrigham/patch-1

Fixes path reference and code formatting in readme.
This commit is contained in:
Jason Turner 2017-03-03 09:55:27 -08:00 committed by GitHub
commit 244b5b224b

View File

@ -79,7 +79,7 @@ directory, and for more in-depth look at the language, the unit tests in the
"unittests" directory cover the most ground.
For examples of how to register parts of your C++ application, see
"example.cpp" in the "src" directory. Example.cpp is verbose and shows every
"example.cpp" in the "samples" directory. Example.cpp is verbose and shows every
possible way of working with the library. For further documentation generate
the doxygen documentation in the build folder or see the website
http://www.chaiscript.com.
@ -87,6 +87,7 @@ http://www.chaiscript.com.
The shortest complete example possible follows:
```C++
/// main.cpp
#include <chaiscript/chaiscript.hpp>
@ -103,5 +104,4 @@ The shortest complete example possible follows:
double d = chai.eval<double>("function(3, 4.75);");
}
```