Skip to content

Commit

Permalink
profile doc: Fix visualization of generated doc
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-lunarg committed Aug 13, 2024
1 parent cae3326 commit 066838c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/gen_profiles_solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -5470,7 +5470,7 @@ def formatValue(self, value):
return '-'
elif type(value[0]) == str:
# Bitmask, match the Vulkan Specification's formatting
return '({0})'.format(' | '.join(value))
return '({0})'.format(' \\| '.join(value))
else:
# Array, match the Vulkan Specification's formatting
return '({0})'.format(','.join(str(el) for el in value))
Expand Down

0 comments on commit 066838c

Please sign in to comment.