eolian: generate correct fallback character

This commit is contained in:
Daniel Kolesa 2015-07-03 16:15:01 +01:00
parent 2e8fc41613
commit 175e9b9055
3 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ _append_section(const char *desc, int ind, int curl, Eina_Strbuf *buf,
if (isalpha(*desc))
eina_strbuf_append(wbuf, "@c ");
else
eina_strbuf_append_char(wbuf, '@');
eina_strbuf_append_char(wbuf, '$');
}
while (*desc && !isspace(*desc))
eina_strbuf_append_char(wbuf, *desc++);

View File

@ -17,7 +17,7 @@ struct @extern Not.Generated {
class Struct {
methods {
foo {
[[Foo docs. This is $monospace.]]
[[Foo docs. This is $monospace. This is alone-standing $.]]
params {
idx: int;
}

View File

@ -31,7 +31,7 @@ typedef struct _Opaque Opaque;
EAPI const Eo_Class *struct_class_get(void) EINA_CONST;
/**
* @brief Foo docs. This is @c monospace.
* @brief Foo docs. This is @c monospace. This is alone-standing $.
*
* @param[in] idx
*/