aboutsummaryrefslogtreecommitdiff
path: root/tools/genspec.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/genspec.py')
-rwxr-xr-xtools/genspec.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genspec.py b/tools/genspec.py
index 3865486..bae11cc 100755
--- a/tools/genspec.py
+++ b/tools/genspec.py
@@ -94,7 +94,7 @@ class TOSASpecAsciidocGenerator:
file.write(header)
file.write("\n\n")
for tysup in sorted(op.typesupports, key=cmp_to_key(compare_profiles)):
- profile = ", ".join(tysup.profiles) if tysup.profiles else "Any"
+ profile = " or ".join(tysup.profiles) if tysup.profiles else "Any"
entry = f"|{profile}|{tysup.mode}"
for ty in op.types:
entry += f"|{tysup.tymap[ty]}"