Skip to content

Commit f88bedb

Browse files
committed
Fix usage of backquotes with word characters on either side.
Fixes KhronosGroup#212
1 parent 537c2ed commit f88bedb

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

en/03_Drawing_a_triangle/00_Setup/01_Instance.adoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,9 @@ https://vulkan.lunarg.com/doc/sdk/1.3.216.0/mac/getting_started.html[Getting Sta
170170
Beginning with the 1.3.216 Vulkan SDK, the `VK_KHR_PORTABILITY_subset`
171171
extension is mandatory.
172172

173-
To get over this error, first add the
174-
`vk::InstanceCreateFlagBits::eEnumeratePortabilityKHR` bit
173+
To get over this error, first add the `vk::InstanceCreateFlagBits::eEnumeratePortabilityKHR` bit
175174
to `VkInstanceCreateInfo` struct flags, then add
176-
`vk::KHRPortabilityEnumerationExtensionName`to instance enabled
175+
`vk::KHRPortabilityEnumerationExtensionName` to instance enabled
177176
extension list.
178177

179178
Typically, the code could be like this:

en/03_Drawing_a_triangle/01_Presentation/01_Swap_chain.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ image::/images/swap_chain_validation_layer.png[]
505505

506506
== Retrieving the swap chain images
507507
The swap chain has been created now, so all that remains is retrieving the
508-
handles of the `VkImage`s in it. We'll reference these during rendering
508+
handles of the ``VkImage``s in it. We'll reference these during rendering
509509
operations in later chapters.
510510

511511
[,c++]

0 commit comments

Comments
 (0)