From c0c4b32d02b05cdd6828ff43571ca5c70dd9536b Mon Sep 17 00:00:00 2001 From: Simon Aittamaa Date: Fri, 8 Apr 2022 11:18:43 +0200 Subject: [PATCH] Update README.md Fix invalid markdown. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2bd563b..ac81501 100644 --- a/README.md +++ b/README.md @@ -422,7 +422,7 @@ Sometimes it is required to use `std::vector` with custom allocators. Vulkan-Hpp std::vector properties = physicalDevice.enumerateDeviceLayerProperties(); ``` -You can as well use a stateful custom allocator by providing it as an argument to those functions. Unfortunately, to make the compilers happy, you also need to explicitly set the Dispatch argument. To get the default there, a simple ´´´{}´´´ would suffice: +You can as well use a stateful custom allocator by providing it as an argument to those functions. Unfortunately, to make the compilers happy, you also need to explicitly set the Dispatch argument. To get the default there, a simple `{}` would suffice: ```c++ MyStatefulCustomAllocator allocator;