From febc51040b25ece228abdccd0f7073ac40130fec Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Sun, 7 Jan 2024 14:57:55 -0800 Subject: [PATCH] Documentation white space tweak --- doc/leaf.adoc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/leaf.adoc b/doc/leaf.adoc index 5331a047..b120f956 100644 --- a/doc/leaf.adoc +++ b/doc/leaf.adoc @@ -1654,9 +1654,9 @@ std::shared_ptr init_lua_state() noexcept lua_register(&*L, "do_work", &do_work); //<2> luaL_dostring(&*L, "\ //<3> -\n function call_do_work()\ -\n return do_work()\ -\n end"); +\n function call_do_work()\ +\n return do_work()\ +\n end"); return L; } @@ -3224,9 +3224,9 @@ assert(std::get<2>(t).value() == E3::e33); <3> namespace boost { namespace leaf { -template -result // T deduced depending on TryBlock return type -try_capture_all( TryBlock && try_block ) noexcept; + template + result // T deduced depending on TryBlock return type + try_capture_all( TryBlock && try_block ) noexcept; } }