diff --git a/en/03_Drawing_a_triangle/00_Setup/02_Validation_layers.adoc b/en/03_Drawing_a_triangle/00_Setup/02_Validation_layers.adoc index 8e873d4a..f8fdb740 100644 --- a/en/03_Drawing_a_triangle/00_Setup/02_Validation_layers.adoc +++ b/en/03_Drawing_a_triangle/00_Setup/02_Validation_layers.adoc @@ -160,8 +160,8 @@ the GLFW dependency for windowing. We'll check if all the required extensions are available. We first get a list of all supported instance extensions by using the -`vk::raii::Context::enumerateInstanceLayerProperties` function and check that all -required layers are listed in that list. This check is also performed directly in the +`vk::raii::Context::enumerateInstanceExtensionProperties` function and check that all +required extensions are listed in that list. This check is also performed directly in the `createInstance` function: [,c++]