From ecd9a22a801e681f48701d56d00c369374a9a985 Mon Sep 17 00:00:00 2001 From: Karel Burda Date: Sat, 13 Oct 2018 19:40:57 +0200 Subject: [PATCH] Fixed formatting --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 717d39f..c88ee23 100644 --- a/README.md +++ b/README.md @@ -70,11 +70,13 @@ catch (const function_loader::exceptions::library_load_failed & error) } catch (const function_loader::exceptions::library_handle_invalid & error) { - // happens when "get_function" called on the function_loader with invalid library handle (may happen after the object was moved) + // happens when "get_function" called on the function_loader with invalid library handle + // (may happen after the object was moved) } catch (const function_loader::exceptions::function_does_not_exist & error) { - // given function not found in the library, might be caused by incorrect signature, or function is not exported (visible) from outside + // given function not found in the library, might be caused by incorrect signature, + // or function is not exported (visible) from outside } ```