summaryrefslogtreecommitdiff
path: root/ovsdb/ovsdb-doc
diff options
context:
space:
mode:
Diffstat (limited to 'ovsdb/ovsdb-doc')
-rwxr-xr-xovsdb/ovsdb-doc2
1 files changed, 2 insertions, 0 deletions
diff --git a/ovsdb/ovsdb-doc b/ovsdb/ovsdb-doc
index 662ed974a..46f1101a8 100755
--- a/ovsdb/ovsdb-doc
+++ b/ovsdb/ovsdb-doc
@@ -212,6 +212,8 @@ def columnGroupToNroff(table, groupXml):
else:
nameNroff = name
typeNroff = typeAndConstraintsToNroff(column)
+ if not column.mutable:
+ typeNroff = "immutable %s" % typeNroff
body += '.IP "\\fB%s\\fR: %s"\n' % (nameNroff, typeNroff)
body += blockXmlToNroff(node.childNodes, '.IP') + "\n"
summary += [('column', nameNroff, typeNroff)]