diff options
author | Plata Hill <plata@mailbox.org> | 2022-05-13 15:58:31 +0000 |
---|---|---|
committer | Ahmad Samir <a.samirh78@gmail.com> | 2022-05-13 15:58:31 +0000 |
commit | cfda47fa43b1f692cd150cbf55620a9ab3330921 (patch) | |
tree | 3c6a1e28b8c45eb32c57b501381caaa1bca94ae4 | |
parent | a0bf7b8e857eba8032e2c828ea2ed0ade09abbad (diff) | |
download | kconfig-cfda47fa43b1f692cd150cbf55620a9ab3330921.tar.gz kconfig-cfda47fa43b1f692cd150cbf55620a9ab3330921.tar.bz2 |
Fix enum doc: close tags
example didn't compile
-rw-r--r-- | src/kconfig_compiler/README.dox | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kconfig_compiler/README.dox b/src/kconfig_compiler/README.dox index 0ead5939..ad64db87 100644 --- a/src/kconfig_compiler/README.dox +++ b/src/kconfig_compiler/README.dox @@ -400,8 +400,8 @@ this allows the same Enum value names to be used in different enums. For example \code{.xml} <entry name="KeepData" type="Enum"> <choices> - <choice name="Do"> - <choice name="Dont" value="Don't"> + <choice name="Do"/> + <choice name="Dont" value="Don't"/> </choices> </entry> \endcode @@ -429,8 +429,8 @@ is set to true, the .kcfg entry \code{.xml} <entry name="KeepData" type="Enum"> <choices prefix="Keep_"> - <choice name="Do"> - <choice name="Dont" value="Don't"> + <choice name="Do"/> + <choice name="Dont" value="Don't"/> </choices> </entry> \endcode @@ -453,8 +453,8 @@ An example of a specifically named enum: \code{.xml} <entry name="KeepData" type="Enum"> <choices name="Types"> - <choice name="Do"> - <choice name="Dont"> + <choice name="Do"/> + <choice name="Dont"/> </choices> </entry> \endcode |