diff --git a/.travis.yml b/.travis.yml index 8c9dcd0..dc3b2ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,14 @@ notifications: - jason@emptycrate.com on_success: always on_failure: always + webhooks: + urls: + - https://webhooks.gitter.im/e/4be9a2720eaa1bb2a6c9 + on_success: change # options: [always|never|change] default: always + on_failure: always # options: [always|never|change] default: always + on_start: false # default: false env: global: secure: eiaR6pXiiEpyB8+LLQ1NvZdl0Yylru1BLy9lMoHl+IpUNGGQGywmW/2WAn77rFfmR1OPA2qWQLfgPwgK0HxUA9HHlot9tre5QhiN2Lw8NOT8tCZ6tTm2+QntDBjBGJyal/knRvQkn/6qs6GxlXRerz4ArnnuPL1vESt3zwB0YtU= + + diff --git a/include/chaiscript/chaiscript.hpp b/include/chaiscript/chaiscript.hpp index 2237068..1b37e9b 100644 --- a/include/chaiscript/chaiscript.hpp +++ b/include/chaiscript/chaiscript.hpp @@ -170,7 +170,7 @@ /// /// ~~~~~~~~~{.cpp} /// chai.add_global_const(const_var(i), "i"); -/// chai("def somefun() { print(i); }; sumfun();"); +/// chai("def somefun() { print(i); }; somefun();"); /// ~~~~~~~~~ /// /// @subsubsection adding_functions Adding Functions