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;