From e520c828b2cd6c0f3d24e1d727e5e02234e06f7d Mon Sep 17 00:00:00 2001 From: Mark Hansen Date: Wed, 21 Oct 2020 22:09:06 +1100 Subject: [PATCH] Remove no-op bool case It behaved the same as the 'else' --- doc/infosrc/templates/attrs.html.j2 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/infosrc/templates/attrs.html.j2 b/doc/infosrc/templates/attrs.html.j2 index 42df96268..a0fe14692 100644 --- a/doc/infosrc/templates/attrs.html.j2 +++ b/doc/infosrc/templates/attrs.html.j2 @@ -91,9 +91,7 @@ of the layout programs. {%- endif -%} {%- if kind in ['double', 'int', 'string'] -%} {{ kind }} - {%- elif kind == 'bool' -%} - bool - {% else -%} + {%- else -%} {{kind}} {% endif -%} {%- endfor -%} -- 2.40.0