summary refs log tree commit diff
path: root/Documentation/doc-guide
diff options
context:
space:
mode:
authorBen Widawsky <ben.widawsky@intel.com>2020-12-07 13:00:27 -0800
committerJonathan Corbet <corbet@lwn.net>2020-12-08 10:23:17 -0700
commit9113584012847a7573d191b4544e1f6ed12a8142 (patch)
treec18b113e08f2005bdce6b7dd39948b209fd079c1 /Documentation/doc-guide
parentd151a23d7bd61a3719000dacc1f5b270c906e896 (diff)
downloadlinux-9113584012847a7573d191b4544e1f6ed12a8142.tar.gz
kernel-doc: Fix example in Nested structs/unions
Add missing ';' as well as fixes the indent for the first struct.

Signed-off-by: Ben Widawsky <ben.widawsky@intel.com>
Link: https://lore.kernel.org/r/20201207210027.1049346-1-ben.widawsky@intel.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/doc-guide')
-rw-r--r--Documentation/doc-guide/kernel-doc.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/doc-guide/kernel-doc.rst b/Documentation/doc-guide/kernel-doc.rst
index 52a87ab4c99f..79aaa55d6bcf 100644
--- a/Documentation/doc-guide/kernel-doc.rst
+++ b/Documentation/doc-guide/kernel-doc.rst
@@ -247,12 +247,12 @@ It is possible to document nested structs and unions, like::
           struct {
             int memb1;
             int memb2;
-        }
+          };
           struct {
             void *memb3;
             int memb4;
-          }
-        }
+          };
+        };
         union {
           struct {
             int memb1;