1
0
Fork 0

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>
zero-sugar-mainline-defconfig
Ben Widawsky 2020-12-07 13:00:27 -08:00 committed by Jonathan Corbet
parent d151a23d7b
commit 9113584012
1 changed files with 3 additions and 3 deletions

View File

@ -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;