Improve formatting of wxStandardPaths::UseAppInfo() documentation

Don't use @code as we don't want the expression to appear on its own
line(s).

Also use Markdown `` instead of Doxygen @c as the former is more general
and can be used around arbitrary runs of text.

(cherry picked from commit 3bf8a60c6c1be7de663ab114100898fa9e0abe36)
This commit is contained in:
Vadim Zeitlin 2022-09-29 16:58:57 +02:00
parent 401bab8e9c
commit d723a1b3bb

View File

@ -496,12 +496,12 @@ public:
plugins directory on Unix, etc.
Valid values for @a info are:
- @c AppInfo_None: use neither application nor vendor name in
- `AppInfo_None`: use neither application nor vendor name in
the paths.
- @c AppInfo_AppName: use the application name in the paths.
- @c AppInfo_VendorName: use the vendor name in the paths, usually
used combined with AppInfo_AppName, i.e. as @code AppInfo_AppName |
AppInfo_VendorName @endcode
- `AppInfo_AppName`: use the application name in the paths.
- `AppInfo_VendorName`: use the vendor name in the paths, usually
used combined with `AppInfo_AppName`, i.e. as
`AppInfo_AppName | AppInfo_VendorName`.
By default, only the application name is used.