From b3c29c7dfc601abbde8db71b1a147f5c7ac2076c Mon Sep 17 00:00:00 2001 From: Richard Thomson Date: Mon, 25 Jul 2016 14:02:20 -0700 Subject: [PATCH] Fix nested bullet formatting --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e638540..dafb7f7 100644 --- a/README.md +++ b/README.md @@ -182,11 +182,11 @@ Depending on exceptions being enabled or disabled, the return type of some funct With exceptions enabled (the default) there are four different cases on the return types: * Just one possible success code -* * no output value -> return type is ```void``` -* * one output value -> return type is T, which is the type of the output value + * no output value -> return type is ```void``` + * one output value -> return type is T, which is the type of the output value * Multiple possible success codes -* * no output value -> return type is ```vk::Result``` -* * one output value -> return type is a structure ```vk::ResultValue``` with a member ```result``` of type ```vk::Result``` holding the actual result code, and a member ```value``` of type T, which is the type of the output value, holding that output value. + * no output value -> return type is ```vk::Result``` + * one output value -> return type is a structure ```vk::ResultValue``` with a member ```result``` of type ```vk::Result``` holding the actual result code, and a member ```value``` of type T, which is the type of the output value, holding that output value. With exceptions disabled, the return type of those wrapper functions where the wrapped function has just one possible success code is different: * no output value -> return type is ```vk::Result```